- Binary Builds
oc new-build --binary=true --name=ola2 --image-stream=redhat-openjdk18-openshift
oc start-build ola2 --from-file=./target/ola.jar --follow
oc new-app
- Turn off/on DC triggers to do a batch of changes without spam many deployments
oc new-build --binary=true --name=ola2 --image-stream=redhat-openjdk18-openshift
oc start-build ola2 --from-file=./target/ola.jar --follow
oc new-app
| #include<stdio.h> | |
| int phi[1000006], mark[1000006]; | |
| void seivephi(int n) | |
| { | |
| int i, j; | |
| for(i=1; i<=n; i++) phi[i] = i; |