Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for recreate (0.36 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def original1 = cl.action(123)
            original1 instanceof Serializable
    
            def recreated1 = recreate(original1)
            def result1 = new StringBuilder()
            recreated1.execute(result1)
    
            result1.toString() == "123"
    
            def original2 = cl.thing(123)
            def result2 = recreate(original2).call()
    
            result2 == "123"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. cluster/gce/upgrade.sh

      if [[ "${drain_rc}" != 0 ]]; then
        echo "== FAILED to drain ${instance} =="
        return ${drain_rc}
      fi
    
      # Recreate instance
      echo "== Recreating instance ${instance}. ==" >&2
      local recreate_rc
      local recreate
      recreate=$(gcloud compute instance-groups managed recreate-instances "${group}" \
        --project="${PROJECT}" \
        --zone="${ZONE}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/registry/core/service/ipallocator/controller/repairip.go

    			r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "ClusterIPNotValid", "ClusterIPValidation", "Cluster IP %s is not a valid IP; please recreate Service", ip)
    			runtime.HandleError(fmt.Errorf("the ClusterIP %s for Service %s/%s is not a valid IP; please recreate Service", ip, svc.Namespace, svc.Name))
    			continue
    		}
    		// TODO(aojea) Refactor to abstract the IPs checks
    		family := getFamilyByIP(ip)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pkg/controller/deployment/deployment_controller.go

    limitations under the License.
    */
    
    // Package deployment contains all the logic for handling Kubernetes Deployments.
    // It implements a set of strategies (rolling, recreate) for deploying an application,
    // the means to rollback to previous versions, proportional scaling for mitigating
    // risk, cleanup policy, and other useful features of Deployments.
    package deployment
    
    import (
    	"context"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    						// as we create them only after acquiring the leader lock
    						// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    						// basically lazy loading the informer, if we stop it when we lose the lock we will never
    						// recreate it again.
    						client.RunAndWait(clusterStopCh)
    						nc.Run(leaderStop)
    					})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

                    generateTypeSafeAccessorsFor(projectScriptPlugins)
                }
            }
        }
    
        private
        fun recreateTaskDirectories() {
            recreate(temporaryDir)
            recreate(sourceCodeOutputDir.get().asFile)
            recreate(metadataOutputDir.get().asFile)
        }
    
        private
        fun IO.generateTypeSafeAccessorsFor(projectScriptPlugins: List<PrecompiledScriptPlugin>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/configcontroller.go

    					// Start informers again. This fixes the case where informers for namespace do not start,
    					// as we create them only after acquiring the leader lock
    					// Note: stop here should be the overall pilot stop, NOT the leader election stop. We are
    					// basically lazy loading the informer, if we stop it when we lose the lock we will never
    					// recreate it again.
    					s.kubeClient.RunAndWait(stop)
    					log.Infof("Starting ingress controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/controller/deployment/deployment_controller_test.go

    	f.expectUpdateDeploymentAction(d)
    	// Expect no update on replica sets though
    	f.run(ctx, testutil.GetKey(d, t))
    }
    
    // TestPodDeletionEnqueuesRecreateDeployment ensures that the deletion of a pod
    // will requeue a Recreate deployment iff there is no other pod returned from the
    // client.
    func TestPodDeletionEnqueuesRecreateDeployment(t *testing.T) {
    	logger, ctx := ktesting.NewTestContext(t)
    
    	f := newFixture(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        auto static_shape_attr =
            mlir::DenseIntElementsAttr::get(static_shape_type, static_shape);
        return rewriter.create<TF::ConstOp>(loc, static_shape_attr).getOutput();
      }
    
      // If the shape is not static, create a new ShapeOp.
      BoolAttr false_attr = rewriter.getBoolAttr(false);
      return rewriter
          .create<TF::ShapeOp>(loc, input,
                               /*use_32bit=*/false_attr)
          .getOutput();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

         * This is not correct!
         *
         * These services are normally available in the build session scope, not the project scope.
         * However, workers do not observe the same lifecycle as the build and do not stop or recreate build session services between builds.
         * This works around that by recreating the build session scope services for every request.
         */
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top