Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for recreate (0.53 sec)

  1. pkg/controller/resourceclaim/controller_test.go

    					{Name: testPodWithResource.Spec.ResourceClaims[0].Name, ResourceClaimName: &generatedTestClaim.Name},
    				},
    			},
    			expectedMetrics: expectedMetrics{0, 0},
    		},
    		{
    			name: "recreate",
    			pods: []*v1.Pod{func() *v1.Pod {
    				pod := testPodWithResource.DeepCopy()
    				pod.Status.ResourceClaimStatuses = []v1.PodResourceClaimStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 08:56:16 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    	// but we don't know what the umask is.
    	// Create a dummy file to find out.
    	// This avoids build tags and works even on systems like Plan 9
    	// where the file mask computation incorporates other information.
    	mode := perm
    	f, err := os.OpenFile(filepath.Clean(dst)+"-go-tmp-umask", os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    	if err == nil {
    		fi, err := f.Stat()
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    	//  1. If $CGO_ENABLED is set, respect it.
    	//  2. Otherwise, if this is a cross-compile, disable cgo.
    	//  3. Otherwise, use built-in default for GOOS/GOARCH.
    	//
    	// Recreate that logic here with the new GOOS/GOARCH setting.
    	// We need to run steps 2 and 3 to determine what the default value
    	// of CgoEnabled would be for computing CGOChanged.
    	defaultCgoEnabled := ctxt.CgoEnabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. cmd/bucket-metadata-sys.go

    			// herd upon start up sequence.
    			time.Sleep(25*time.Millisecond + time.Duration(rand.Int63n(int64(100*time.Millisecond))))
    
    			_, _ = sys.objAPI.HealBucket(ctx, buckets[index].Name, madmin.HealOpts{Recreate: true})
    			meta, err := loadBucketMetadata(ctx, sys.objAPI, buckets[index].Name)
    			if err != nil {
    				return err
    			}
    			bucketMetas[index] = meta
    			return nil
    		}, index)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                  ArrayRef<TensorType>{mlir::cast<TensorType>(buffer.getType())},
                  stack.getContext()));
      auto local_var = builder.create<TF::MlirLocalVarOp>(
          stack.getLoc(), ArrayRef<Type>{var_type}, ArrayRef<Value>{});
      auto local_size_var = builder.create<TF::MlirLocalVarOp>(
          stack.getLoc(), ArrayRef<Type>{size_var_type}, ArrayRef<Value>{});
      // Zero-initialize the local vars.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            this.isolatedParameters = calculatedValueContainerFactory.create(Describables.of("parameters of", this),
                new IsolateTransformParameters(parameterObject, implementationClass, cacheable, owner, parameterPropertyWalker, isolatableFactory, buildOperationRunner, classLoaderHierarchyHasher,
                    fileCollectionFactory));
        }
    
        /**
         * Used to recreate a transformer from the configuration cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. src/os/readfrom_linux_test.go

    		f, err := CreateTemp("", "file-readfrom-itself-test")
    		if err != nil {
    			t.Fatalf("failed to create tmp file: %v", err)
    		}
    		t.Cleanup(func() {
    			f.Close()
    			Remove(f.Name())
    		})
    
    		data := []byte("hello world!")
    		if _, err := f.Write(data); err != nil {
    			t.Fatalf("failed to create and feed the file: %v", err)
    		}
    
    		if err := f.Sync(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // field as a collision avoidance mechanism when it needs to create the name for the
      // newest ReplicaSet.
      // +optional
      optional int32 collisionCount = 8;
    }
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    message DeploymentStrategy {
      // Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.
      // +optional
      optional string type = 1;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/init.go

    	return apiclient.NewDryRunClient(dryRunGetter, os.Stdout), nil
    }
    
    // Client returns a Kubernetes client to be used by kubeadm.
    // This function is implemented as a singleton, thus avoiding to recreate the client when it is used by different phases.
    // Important. This function must be called after the admin.conf kubeconfig file is created.
    func (d *initData) Client() (clientset.Interface, error) {
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (DeploymentStatus) SwaggerDoc() map[string]string {
    	return map_DeploymentStatus
    }
    
    var map_DeploymentStrategy = map[string]string{
    	"":              "DeploymentStrategy describes how to replace existing pods with new ones.",
    	"type":          "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top