Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,627 for current$ (1.13 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

            Registries current = registries.get();
            Registries next = current.startProjectExecution(parallel);
            setProjectExecutionState(current, next);
        }
    
        @Override
        public void finishProjectExecution() {
            // TODO - check no locks are currently held
            Registries current = registries.get();
            Registries next = current.finishProjectExecution();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RelocatedArtifact.java

            String current = getVersion();
            if (current.equals(version) || (version == null && current.isEmpty())) {
                return this;
            }
            return new RelocatedArtifact(artifact, groupId, artifactId, classifier, extension, version, message);
        }
    
        @Deprecated
        @Override
        public Artifact setFile(File file) {
            File current = getFile();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

        }
    
        static void assumeCurrentJavaVersionIsSupportedBy(VersionNumber kotlinVersionNumber) {
            JavaVersion current = JavaVersion.current()
            JavaVersion mini = getMinimumJavaVersionFor(kotlinVersionNumber)
            assumeTrue("KGP $kotlinVersionNumber minimum supported Java version is $mini, current is $current", current >= mini)
            JavaVersion maxi = getMaximumJavaVersionFor(kotlinVersionNumber)
            if (maxi != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

         * @throws IllegalStateException if the passed entry point token does not match the current innermost instrumented call tracked for the thread.
         */
        void leaveCall(EntryPointCallSite entryPoint);
    
        /**
         * Checks if the current thread's innermost instrumented call matches the name and call kind, and has not been marked as intercepted yet.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

            BinaryInfo info
            if (OperatingSystem.current().isWindows() && !DumpbinBinaryInfo.findVisualStudio()) {
                info = new FileArchOnlyBinaryInfo(file)
            } else {
                info = getBinaryInfo()
            }
            return info.getArch()
        }
    
        BinaryInfo getBinaryInfo() {
            file.assertExists()
            if (OperatingSystem.current().isMacOsX()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy

            CtClass current = c
            while (current != null) {
                if (containsMethod(current, method)) {
                    classesContainingMethod.add(current)
                } else {
                    break
                }
                current = current.getSuperclass()
            }
    
            for (int i = classesContainingMethod.size() - 1; i > 0; --i) {
                current = classesContainingMethod.get(i)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    	Modified map[string]interface{}
    	// Current is the current object (live config in the server)
    	Current map[string]interface{}
    	// TwoWay is the expected two-way merge patch diff between original and modified
    	TwoWay map[string]interface{}
    	// ThreeWay is the expected three-way merge patch
    	ThreeWay map[string]interface{}
    	// Result is the expected object after applying the three-way patch on current object.
    	Result map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/types.go

    }
    
    // ObjectMetricStatus indicates the current value of a metric describing a
    // kubernetes object (for example, hits-per-second on an Ingress object).
    type ObjectMetricStatus struct {
    	Metric  MetricIdentifier
    	Current MetricValueStatus
    
    	DescribedObject CrossVersionObjectReference
    }
    
    // PodsMetricStatus indicates the current value of a metric describing each pod in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

      val i = mappings.iterator()
      var current = i.next()
    
      while (true) {
        if (current.spansSections) {
          result +=
            Mapping(
              current.sourceCodePoint0,
              current.section + 0x7f,
              current.type,
              current.mappedTo,
            )
          current =
            Mapping(
              current.section + 0x80,
              current.sourceCodePoint1,
              current.type,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. 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)
Back to top