Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 183 for recreate (0.96 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

                                             assert(false && "Should not happen");
                                           });
      // Recreate the while op.
      OpBuilder builder(while_op);
      // Now use the filtered original operands, which will be replaced by
      // AddLoadsStoresOutsideControlFlowOp().
      auto new_while = builder.create<TF::WhileOp>(
          while_op.getLoc(), body.getFunctionType().getResults(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. cmd/object-api-interface.go

    type DeleteBucketOptions struct {
    	NoLock     bool             // does not lock the delete bucket call if set to 'true'
    	NoRecreate bool             // do not recreate bucket on delete failures
    	Force      bool             // Force deletion
    	SRDeleteOp SRBucketDeleteOp // only when site replication is enabled
    }
    
    // BucketOptions provides options for ListBuckets and GetBucketInfo call.
    type BucketOptions struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. pkg/apis/batch/types.go

    	// resetting the ActiveDeadlineSeconds timer too. Defaults to false.
    	//
    	// +optional
    	Suspend *bool
    
    	// 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
    - 33K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            return doCreate(name, type, NO_ARGS, Actions.doNothing());
        }
    
        @Override
        public <T extends Task> T create(final String name, final Class<T> type, final Object... constructorArgs) throws InvalidUserDataException {
            assertMutable("create(String, Class, Object...)");
            return doCreate(name, type, constructorArgs, Actions.doNothing());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// +optional
    	Suspend *bool `json:"suspend,omitempty" protobuf:"varint,10,opt,name=suspend"`
    
    	// 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 Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top