Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for untouched (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

       *   <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
       *       interrupt).
       *   <li>Any {@link CancellationException} is propagated untouched, as is any other {@link
       *       RuntimeException} (though {@code get} implementations are discouraged from throwing such
       *       exceptions).
       * </ul>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    As usual, you should commit the changes to the Wrapper files to version control.
    
    Note that running the wrapper task once will update `gradle-wrapper.properties` only, but leave the wrapper itself in `gradle-wrapper.jar` untouched.
    This is usually fine as new versions of Gradle can be run even with older wrapper files.
    
    NOTE: If you want *all* the wrapper files to be completely up-to-date, you will need to run the `wrapper` task a second time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache_test.go

    	u.Expect(map[string]int{rootResource: 1})
    
    	checkSecret(t, sc, rootResource, security.SecretItem{
    		ResourceName: rootResource,
    		RootCert:     testcerts.CACert,
    	})
    
    	// Double check workload cert is untouched
    	checkSecret(t, sc, workloadResource, security.SecretItem{
    		ResourceName:     workloadResource,
    		CertificateChain: testcerts.RotatedCert,
    		PrivateKey:       testcerts.RotatedKey,
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // 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.
      optional int32 partition = 1;
    
      // maxUnavailable is the maximum number of pods that can be unavailable during the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/text/scanner/scanner.go

    	IsIdentRune func(ch rune, i int) bool
    
    	// Start position of most recently scanned token; set by Scan.
    	// Calling Init or Next invalidates the position (Line == 0).
    	// The Filename field is always left untouched by the Scanner.
    	// If an error is reported (via Error) and Position is invalid,
    	// the scanner is not inside a token. Call Pos to obtain an error
    	// position in that case, or to obtain the position immediately
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // 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.
      optional int32 partition = 1;
    
      // maxUnavailable is the maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top