Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for untouched (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfields_test.go

    			expected:      []metav1.ManagedFieldsEntry{},
    		},
    		{
    			name:          "nil",
    			managedFields: nil,
    			expected:      nil,
    		},
    		{
    			name: "remains untouched",
    			managedFields: []metav1.ManagedFieldsEntry{
    				{Manager: "a", Operation: metav1.ManagedFieldsOperationApply, Time: nil},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. android/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
    - 39K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                        constraint('org.test:moduleB:1.0', 'org.test:moduleB:1.0')
                    }
                }
            }
        }
    
    
        def "changing dependencies in one variant leaves other variants untouched"() {
            when:
            buildFile << """
                class ModifyDepRule implements ComponentMetadataRule {
                    void execute(ComponentMetadataContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top