Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for currentCA (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            // Try to infer the effective jvm options for the currently running process.
            // We only care about 'managed' jvm args, anything else is unimportant to the running build
            JvmOptions jvmOptions = new JvmOptions(fileCollectionFactory);
            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

            if (consumerVersion == null) {
                return "";
            } else {
                // Consumer version is provided by client 1.2 and later
                return String.format("You are currently using tooling API version %s. ", consumerVersion.getVersion());
            }
        }
    
        private void checkUnsupportedTapiVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	parsedRV, _ := strconv.Atoi(outPod.ResourceVersion)
    	currentRV := fmt.Sprintf("%d", parsedRV+1)
    
    	firstNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported && !cacheEnabled {
    		firstNonConsistentReadRV = currentRV
    	}
    
    	secondNonConsistentReadRV := lastObjecRV
    	if consistentReadsSupported {
    		secondNonConsistentReadRV = currentRV
    	}
    
    	tcs := []struct {
    		name             string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

        private static final GradleVersionSpec GRADLE_VERSION_SPEC = new GradleVersionSpec()
    
        static {
            // If we are testing a non-current tooling API version, we will have loaded the class using its classloader and thus
            // GradleVersion.current() will report that version. In order to set up the testing infrastructure, we need to
            // know the version of Gradle being built
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

            expect:
            JavaVersion.current() == current
            JavaVersion.current().java6 == isJava6
            JavaVersion.current().java7 == isJava7
            JavaVersion.current().java8 == isJava8
            JavaVersion.current().java9 == isJava9
            JavaVersion.current().java10 == isJava10
            JavaVersion.current().java11 == isJava11
            JavaVersion.current().java12 == isJava12
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    	}
    	// Check if server is ready to accept clients and process new requests.
    	// Currently ready means caches have been synced and hence can build
    	// clusters correctly. Without this check, InitContext() call below would
    	// initialize with empty config, leading to reconnected Envoys loosing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

       */
      public void threadAssertFalse(boolean b) {
        try {
          assertFalse(b);
        } catch (AssertionFailedError t) {
          threadRecordFailure(t);
          throw t;
        }
      }
    
      /**
       * Just like assertNull(x), but additionally recording (using threadRecordFailure) any
       * AssertionFailedError thrown, so that the current testcase will fail.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            }
        }
    
        private
        var writingState: WritingState = Idle()
    
        // Start fingerprinting if not already started and not already committed
        // This should be strict but currently this method may be called multiple times when a
        // build invocation both runs tasks and queries models
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

            String trimmed = constraint.trim();
            if (trimmed.equals("current")) {
                return new Spec<GradleVersion>() {
                    @Override
                    public boolean isSatisfiedBy(GradleVersion element) {
                        return element.equals(GradleVersion.current());
                    }
                };
            }
            if (trimmed.equals("!current")) {
                return new Spec<GradleVersion>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. configure.py

      if curr_version.startswith('bazel '):
        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
      if not curr_version_int:
        print('WARNING: current bazel installation is not a release version.')
        return curr_version
    
      print('You have bazel %s installed.' % curr_version)
      return curr_version
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top