Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 640 for corerest (0.38 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

            }
            // We reschedule ourselves with a lock held for two reasons. 1. we want to make sure that
            // cancel calls cancel on the correct future. 2. we want to make sure that the assignment
            // to currentFuture doesn't race with itself so that currentFuture is assigned in the
            // correct order.
            Throwable scheduleFailure = null;
            Cancellable toReturn;
            lock.lock();
            try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/extendedresourcetoleration/admission_test.go

    							Operator: core.TolerationOpExists,
    							Effect:   core.TaintEffectNoSchedule,
    						},
    					},
    				},
    			},
    		},
    		{
    			description: "pod with container requesting extended resource and existing correct toleration, expect no change in tolerations",
    			requestedPod: core.Pod{
    				Spec: core.PodSpec{
    					Containers: []core.Container{
    						containerRequestingCPU,
    						containerRequestingMemory,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerificationConfiguration.java

                //
                // By getting ASCII bytes (aka. strictly 1 byte per character, no variable-length magic)
                // we can safely check if the fingerprint is of the correct length.
                if (keyId.getBytes(StandardCharsets.US_ASCII).length < 40) {
                    throw new InvalidGpgKeyIdsException(Collections.singletonList(keyId));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/crypto/rsa/pkcs1v15.go

    // attacker to brute-force it. If they can do that then they can learn whether a
    // random value was used (because it'll be different for the same ciphertext)
    // and thus whether the padding was correct. This also defeats the point of this
    // function. Using at least a 16-byte key will protect against this attack.
    //
    // This method implements protections against Bleichenbacher chosen ciphertext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repairip.go

    		return err
    	}
    	// The service exists, we have checked in previous loop that all Service to IPAddress are correct
    	// but we also have to check the reverse, that the IPAddress to Service relation is correct
    	for _, clusterIP := range svc.Spec.ClusterIPs {
    		if ipAddress.Name == clusterIP {
    			return nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          tag process_start
          time_format %Y-%m-%d %H:%M:%S
          keys process_start_timestamp
        </source>
    
        # This filter is used to convert process start timestamp to integer
        # value for correct ingestion in the prometheus output plugin.
        <filter process_start>
          @type record_transformer
          enable_ruby true
          auto_typecast true
          <record>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginIntegrationTest.kt

        }
    
        @Test
        @Issue("https://github.com/gradle/gradle/issues/17831")
        fun `precompiled script plugins in resources are ignored`() {
            withKotlinDslPlugin()
            withPrecompiledKotlinScript("correct.gradle.kts", "")
            file("src/main/resources/invalid.gradle.kts", "DOES NOT COMPILE")
            compileKotlin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/BUILD

        deps = [
            ":tfr_decompose_ctx",
            "//tensorflow/core:framework",
            "//tensorflow/core:ops",
            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_absl//absl/types:span",
            "@llvm-project//mlir:IR",
            "@local_tsl//tsl/platform:statusor",
            "@local_xla//xla:test",
        ],
    )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

        for (AtomicInteger value : countMap.values()) {
          sum += value.get();
        }
        return Ints.saturatedCast(sum);
      }
    
      /*
       * Note: the superclass toArray() methods assume that size() gives a correct
       * answer, which ours does not.
       */
    
      @Override
      public Object[] toArray() {
        return snapshot().toArray();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/BigIntegerMath.java

         * 10^floor(log10(x)).
         */
    
        if (approxCmp > 0) {
          /*
           * The code is written so that even completely incorrect approximations will still yield the
           * correct answer eventually, but in practice this branch should almost never be entered, and
           * even then the loop should not run more than once.
           */
          do {
            approxLog10--;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top