Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for untouched (0.11 sec)

  1. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    	"partition":      "Partition indicates the ordinal at which the StatefulSet should be partitioned for updates. During a rolling update, all pods from ordinal Replicas-1 to Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched. This is helpful in being able to do a canary based deployment. The default value is 0.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. src/encoding/xml/read.go

    // paths, and calls unmarshal on them.
    // The consumed result tells whether XML elements have been consumed
    // from the Decoder until start's matching end element, or if it's
    // still untouched because start is uninteresting for sv's fields.
    func (d *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, parents []string, start *StartElement, depth int) (consumed bool, err error) {
    	recurse := false
    Loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. pkg/controller/daemon/update_test.go

    	expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    	clearExpectations(t, manager, ds, podControl)
    
    	// Perform another update, verify we delete and create 2 pods, three available should remain untouched
    
    	ds.Spec.Template.Spec.Containers[0].Image = "foo2/bar3"
    	err = manager.dsStore.Update(ds)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	clearExpectations(t, manager, ds, podControl)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. src/image/draw/draw_test.go

    	// is only 1x2. The Draw call should affect dst's pixels at (1, 10) and (2,
    	// 10) but the pixel at (0, 10) should be untouched.
    	//
    	// The src image is entirely transparent (and the Draw operator is Src) so
    	// the two touched pixels should be set to transparent colors.
    	//
    	// In general, Go's color.Color type (and specifically the Color.RGBA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. src/go/doc/reader.go

    // set creates the corresponding Func for f and adds it to mset.
    // If there are multiple f's with the same name, set keeps the first
    // one with documentation; conflicts are ignored. The boolean
    // specifies whether to leave the AST untouched.
    func (mset methodSet) set(f *ast.FuncDecl, preserveAST bool) {
    	name := f.Name.Name
    	if g := mset[name]; g != nil && g.Doc != "" {
    		// A function with the same name has already been registered;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

      }
    
      /**
       * Removes the element at position {@code index}.
       *
       * <p>Normally this method leaves the elements at up to {@code index - 1}, inclusive, untouched.
       * Under these circumstances, it returns {@code null}.
       *
       * <p>Occasionally, in order to maintain the heap invariant, it must swap a later element of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (1)
  7. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

      }
    
      /**
       * Removes the element at position {@code index}.
       *
       * <p>Normally this method leaves the elements at up to {@code index - 1}, inclusive, untouched.
       * Under these circumstances, it returns {@code null}.
       *
       * <p>Occasionally, in order to maintain the heap invariant, it must swap a later element of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle.go

    	if lcEvent.Action.DeleteRestored() {
    		// delete locally restored copy of object or object version
    		// from the source, while leaving metadata behind. The data on
    		// transitioned tier lies untouched and still accessible
    		opts.Transition.ExpireRestored = true
    		_, err := objectAPI.DeleteObject(ctx, oi.Bucket, oi.Name, opts)
    		if err == nil {
    			// TODO consider including expiry of restored object to events we
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          return WalkResult::advance();
    
        // Forward operand to result. When `num_replicas` attribute is 1, no
        // `tf_device.replicate` is created and replicated (1) operands/results are
        // untouched.
        if (op->getNumOperands() == 1 && op->getNumResults() == 1)
          op->getResult(0).replaceAllUsesWith(op->getOperand(0));
    
        // Leftover TPUReplicatedInput/TPUReplicatedOutput that are not of
    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. staging/src/k8s.io/api/apps/v1beta1/types.go

    	// Partition indicates the ordinal at which the StatefulSet should be partitioned
    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top