Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,277 for current1_ (1.54 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/TrivialChangeDetector.java

            S current = currentEntry.getValue();
            if (itemComparator.hasSamePath(previous, current)) {
                if (itemComparator.hasSameContent(previous, current)) {
                    return true;
                }
                String path = currentEntry.getKey();
                return visitor.visitChange(changeFactory.modified(path, propertyTitle, previous, current));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/conversion.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	// Add non-generated conversion functions here. Currently there are none.
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 08 00:48:38 UTC 2017
    - 775 bytes
    - Viewed (0)
  10. 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)
Back to top