Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,563 for current1_ (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/exception/DefaultExceptionAnalyser.java

            for (Throwable current = exception, parent = null; current != null; parent = current, current = current.getCause()) {
                if (!dejaVu.add(current)) {
                    if (parent != null) {
                        current = patchCircularCause(current, parent);
                    }
                }
                if (current instanceof LocationAwareException) {
                    locationAware = current;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:10:04 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/vdso_linux_loong64.go

    package runtime
    
    const (
    	// vdsoArrayMax is the byte-size of a maximally sized array on this architecture.
    	// See cmd/compile/internal/loong64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    // not currently described in manpages as of May 2022, but will eventually
    // appear
    // when that happens, see man 7 vdso : loongarch
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_5.10", 0xae78f70}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:58:55 UTC 2022
    - 793 bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LoadingCache.java

       * currently contains a value for {@code key}, and {@link CacheLoader#load} otherwise. Loading is
       * asynchronous only if {@link CacheLoader#reload} was overridden with an asynchronous
       * implementation.
       *
       * <p>Returns without doing anything if another thread is currently loading the value for {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/MultiReader.java

            long result = current.skip(n);
            if (result > 0) {
              return result;
            }
            advance();
          }
        }
        return 0;
      }
    
      @Override
      public boolean ready() throws IOException {
        return (current != null) && current.ready();
      }
    
      @Override
      public void close() throws IOException {
        if (current != null) {
          try {
            current.close();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/MultiReader.java

            long result = current.skip(n);
            if (result > 0) {
              return result;
            }
            advance();
          }
        }
        return 0;
      }
    
      @Override
      public boolean ready() throws IOException {
        return (current != null) && current.ready();
      }
    
      @Override
      public void close() throws IOException {
        if (current != null) {
          try {
            current.close();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
            "tool disagrees with "                | "other" | "current" | "current"  | "javaHome"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

                .withProject(rootXcodeProject)
                .withScheme("App")
                .fails(XcodebuildExecutor.XcodeAction.TEST)
    
            then:
            resultDebug.error.contains("Scheme App is not currently configured for the test action.")
    
            when:
            def resultRelease = xcodebuild
                .withProject(rootXcodeProject)
                .withScheme("App")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                    }
                }
            }
    
            void added() {
                DefaultFileChange added = DefaultFileChange.added(current.getKey(), propertyTitle, current.getValue().getType(), current.getValue().getNormalizedPath());
                changeConsumer.visitChange(added);
                current = nextEntry(currentEntries);
            }
    
            void removed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectInAnyOrder.java

            lock.lock();
            try {
                if (current != null) {
                    ResponseProducer producer = current.selectResponseProducer(id, exchange);
                    if (producer != null) {
                        return producer;
                    }
                    current = null;
                }
                for (TrackingHttpHandler handler : available) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gotoolchain_version.txt

    	# but it may be changed in GOROOT/go.env (such as in third-party
    	# distributions).
    	#
    	# Make sure it is in use here, because the server for releases not served
    	# through the proxy (https://golang.org/toolchain?go-get=1) currently only
    	# serves the latest patch release for each of the supported stable releases.
    
    [go-builder] env GOPROXY=
    [!go-builder] env GOPROXY=https://proxy.golang.org
    
    go list -m -versions go
    stdout 1.20.1 # among others
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 706 bytes
    - Viewed (0)
Back to top