Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for recreate (0.14 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                filter_op->getLoc(), *rewriter.getContext(), filter_scale_values,
                filter_zero_point_values,
                /*quantization_dimension=*/3);
    
        // Create a new constant op for the filter in i8.
        auto quantized_filter_constant_op = rewriter.create<stablehlo::ConstantOp>(
            filter_op->getLoc(),
            /*output=*/
            filter_i8_value_attr.getType().clone(filter_quantized_element_type),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    	invalidStrategyDeployment := validDeployment()
    	invalidStrategyDeployment.Spec.Strategy.Type = apps.DeploymentStrategyType("randomType")
    	errorCases[`supported values: "Recreate", "RollingUpdate"`] = invalidStrategyDeployment
    
    	// rollingUpdate should be nil for recreate.
    	invalidRecreateDeployment := validDeployment()
    	invalidRecreateDeployment.Spec.Strategy = apps.DeploymentStrategy{
    		Type:          apps.RecreateDeploymentStrategyType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    	// the previous pod is ready or terminated. At most one pod will be changed
    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"podReplacementPolicy":    "podReplacementPolicy specifies when to create replacement Pods. Possible values are: - TerminatingOrFailed means that we recreate pods\n  when they are terminating (has a metadata.deletionTimestamp) or failed.\n- Failed means to wait until a previously created Pod is fully terminated (has phase\n  Failed or Succeeded) before creating...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_tls13.go

    // interfaces implemented by standard library hashes to clone the state of in
    // to a new instance of h. It returns nil if the operation fails.
    func cloneHash(in hash.Hash, h crypto.Hash) hash.Hash {
    	// Recreate the interface to avoid importing encoding.
    	type binaryMarshaler interface {
    		MarshalBinary() (data []byte, err error)
    		UnmarshalBinary(data []byte) error
    	}
    	marshaler, ok := in.(binaryMarshaler)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/fetch.go

    	}
    	data, err := lockedfile.Read(ziphash)
    	if err != nil {
    		base.Fatalf("verifying %v", module.VersionError(mod, err))
    	}
    	data = bytes.TrimSpace(data)
    	if !isValidSum(data) {
    		// Recreate ziphash file from zip file and use that to check the mod sum.
    		zip, err := CachePath(ctx, mod, "zip")
    		if err != nil {
    			base.Fatalf("verifying %v", module.VersionError(mod, err))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/generated.proto

      // resetting the ActiveDeadlineSeconds timer too. Defaults to false.
      //
      // +optional
      optional bool suspend = 10;
    
      // podReplacementPolicy specifies when to create replacement Pods.
      // Possible values are:
      // - TerminatingOrFailed means that we recreate pods
      //   when they are terminating (has a metadata.deletionTimestamp) or failed.
      // - Failed means to wait until a previously created Pod is fully terminated (has phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

        if (tpu_replicated_input.getIsMirroredVariable()) {
          mirrored_variable_indices.push_back(pos_and_input.index());
        }
      }
    
      // Create replicate op.
      auto result_types = GetClusterResultTypes(cluster, partitioned_outputs);
      auto replicate_op = builder.create<mlir::tf_device::ReplicateOp>(
          cluster.getLoc(), num_replicas,
          llvm::SmallDenseMap<llvm::StringRef,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  10. pilot/pkg/autoregistration/controller_test.go

    		}, retry.Timeout(time.Until(time.Now().Add(21*features.WorkloadEntryCleanupGracePeriod))))
    
    		c2.OnDisconnect(p3conn1) // cleanup the state for future tests
    	})
    	t.Run("workload group recreate", func(t *testing.T) {
    		p1conn1 = makeConn(p, time.Now())
    		c2.OnConnect(p1conn1)
    		checkEntryOrFail(t, store, wgA, p, n, c2.instanceID)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top