Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,880 for current$ (0.22 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/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: Wed Feb 28 07:40:37 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AtomicDouble.java

          double nextVal = currentVal + delta;
          long next = doubleToRawLongBits(nextVal);
          if (value.compareAndSet(current, next)) {
            return nextVal;
          }
        }
      }
    
      /**
       * Returns the String representation of the current value.
       *
       * @return the String representation of the current value
       */
      @Override
      public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 28 21:00:54 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. pkg/apis/autoscaling/v2beta1/conversion.go

    	out.Name = v1.ResourceName(in.Name)
    	out.Container = in.Container
    	out.CurrentAverageUtilization = in.Current.AverageUtilization
    	if in.Current.AverageValue != nil {
    		out.CurrentAverageValue = *in.Current.AverageValue
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaDependency.java

        /**
         * scope of the current dependency. Not-<code>null</code> all the time
         *
         * @return scope
         */
        IdeaDependencyScope getScope();
    
        /**
         * Allows to check if current dependency is transitive, i.e. is visible to the module which depends on module that has current dependency.
         *
         * @return <code>true</code> if current dependency is transitive; <code>false</code> otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/path.go

    var cwdOnce sync.Once
    
    // UncachedCwd returns the current working directory.
    // Most callers should use Cwd, which caches the result for future use.
    // UncachedCwd is appropriate to call early in program startup before flag parsing,
    // because the -C flag may change the current directory.
    func UncachedCwd() string {
    	wd, err := os.Getwd()
    	if err != nil {
    		Fatalf("cannot determine current directory: %v", err)
    	}
    	return wd
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecFactoryTest.groovy

            options.forkOptions.executable = executable ? Jvm.current().javacExecutable.absolutePath : null
    
            def javaToolchain = null
            if (toolchain != null) {
                def isCurrent = toolchain == "current"
                javaToolchain = Mock(JavaToolchain)
                javaToolchain.installationPath >> TestFiles.fileFactory().dir(Jvm.current().javaHome)
                javaToolchain.isCurrentJvm() >> isCurrent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top