Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for untouched (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      // bottom-up analysis. The terminator is not included because the return
      // statement is not included in any subgraph (e.g. XlaCallModuleOp) and is
      // untouched.
      SmallVector<Operation*> reverse_main_func_block_ops;
      SetVector<Operation*> ops_to_add;
      for (Operation& main_func_block_op :
           llvm::reverse(main_func_block.without_terminator())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * ListeningExecutorService}.
       *
       * <p>If the delegate executor was already an instance of {@code ListeningExecutorService}, it is
       * returned untouched, and the rest of this documentation does not apply.
       *
       * @since 10.0
       */
      @J2ktIncompatible
      @GwtIncompatible // TODO
      public static ListeningExecutorService listeningDecorator(ExecutorService delegate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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