Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 374 for nature (0.19 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/TestPlatform.java

      }
    
      /**
       * Retrieves the result of a {@code Future} known to be done but uses the {@code get(long,
       * TimeUnit)} overload in order to test that method.
       */
      static <V> V getDoneFromTimeoutOverload(Future<V> future) throws ExecutionException {
        checkState(future.isDone(), "Future was expected to be done: %s", future);
        try {
          return getUninterruptibly(future, 0, SECONDS);
        } catch (TimeoutException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_x86.go

    )
    
    var maxExtendedFunctionInformation uint32
    
    func doinit() {
    	options = []option{
    		{Name: "adx", Feature: &X86.HasADX},
    		{Name: "aes", Feature: &X86.HasAES},
    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
    		{Name: "rdtscp", Feature: &X86.HasRDTSCP},
    		{Name: "sha", Feature: &X86.HasSHA},
    	}
    	level := getGOAMD64level()
    	if level < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. hack/make-rules/test-cmd.sh

      ENABLE_FEATURE_GATES=""
    
      "${THIS_PLATFORM_BIN}/kube-apiserver" \
        --bind-address="127.0.0.1" \
        --authorization-mode="${AUTHORIZATION_MODE}" \
        --secure-port="${SECURE_API_PORT}" \
        --feature-gates="${ENABLE_FEATURE_GATES}" \
        --enable-admission-plugins="${ENABLE_ADMISSION_PLUGINS}" \
        --disable-admission-plugins="${DISABLE_ADMISSION_PLUGINS}" \
        --etcd-servers="http://${ETCD_HOST}:${ETCD_PORT}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ExpectingFailureRuleStatement.groovy

        private final Statement next
    
        private final String feature
    
        ExpectingFailureRuleStatement(Statement next, String feature) {
            this.next = next
            this.feature = feature
        }
    
        @Override
        void evaluate() throws Throwable {
            try {
                next.evaluate()
                throw new ToBeFixedSpecInterceptor.UnexpectedSuccessException(feature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/build.gradle.kts

        api(project(":ide"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
        api(project(":service-provider"))
    
        implementation(project(":model-core"))
        implementation(project(":testing-native"))
        implementation(project(":logging-api"))
        implementation(libs.commonsLang)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/build.gradle.kts

        implementation(project(":file-collections"))
        implementation(project(":language-native"))
        implementation(project(":platform-native"))
        implementation(project(":testing-native"))
    
        implementation(libs.guava)
    
        testImplementation(testFixtures(project(":platform-native")))
    
        crossVersionTestDistributionRuntimeOnly(project(":distributions-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  7. src/internal/cpu/cpu.go

    type option struct {
    	Name      string
    	Feature   *bool
    	Specified bool // whether feature value was specified in GODEBUG
    	Enable    bool // whether feature should be enabled
    }
    
    // processOptions enables or disables CPU feature values based on the parsed env string.
    // The env string is expected to be of the form cpu.feature1=value1,cpu.feature2=value2...
    // where feature names is one of the architecture specific list stored in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/validation_test.go

    	const conflict = "UnknownVersionInteroperabilityProxy feature requires StorageVersionAPI feature flag to be enabled"
    	tests := []struct {
    		name            string
    		featuresEnabled []featuregate.Feature
    	}{
    		{
    			name:            "enabled: UnknownVersionInteroperabilityProxy, disabled: StorageVersionAPI",
    			featuresEnabled: []featuregate.Feature{features.UnknownVersionInteroperabilityProxy},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. android/guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

        final SettableFuture<@Nullable Void> future = SettableFuture.create();
        Object x =
            new Object() {
              @Override
              protected void finalize() {
                future.set(null);
              }
            };
        x = null; // Hint to the JIT that x is unreachable
        GcFinalization.awaitDone(future);
        assertTrue(future.isDone());
        assertFalse(future.isCancelled());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/build.gradle.kts

            because("Test fixtures export the Platform class")
        }
    
        testFixturesImplementation(project(":internal-integ-testing"))
        testFixturesImplementation(testFixtures(project(":platform-native")))
    
        testImplementation(project(":native"))
        testImplementation(project(":resources"))
        testImplementation(project(":base-services-groovy"))
        testImplementation(libs.commonsIo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top