Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 276 for recreate (0.24 sec)

  1. 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)
  2. hack/verify-vendor.sh

    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. 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)
  7. pkg/test/framework/components/istio/cleanup.go

    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    		for _, c := range i.ctx.Clusters().Remotes() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/istio-agent/xds_proxy_delta_test.go

    	if !proto.Equal(gotEcdsConfig, wantEcdsConfig) {
    		t.Errorf("xds proxy wasm config conversion got %v want %v", gotEcdsConfig, wantEcdsConfig)
    	}
    	n1 := proxy.ecdsLastNonce
    
    	// reset wasm cache to a NACK cache, and recreate xds server as well to simulate a version bump
    	proxy.wasmCache = &fakeNackCache{}
    	f = xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: string(ef),
    	})
    	setDialOptions(proxy, f.BufListener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top