Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,689 for resort (0.4 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	}
    	return mappings, nil
    }
    
    // MaybeResetRESTMapper calls Reset() on the mapper if it is a ResettableRESTMapper.
    func MaybeResetRESTMapper(mapper RESTMapper) {
    	m, ok := mapper.(ResettableRESTMapper)
    	if ok {
    		m.Reset()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    		d.buf = d.saveBuf.Bytes()
    		d.saveBuf.Reset()
    	}
    
    	for len(d.buf) > 0 {
    		err = d.parseHeaderFieldRepr()
    		if err == errNeedMore {
    			// Extra paranoia, making sure saveBuf won't
    			// get too large. All the varint and string
    			// reading code earlier should already catch
    			// overlong things and return ErrStringLength,
    			// but keep this as a last resort.
    			const varIntOverhead = 8 // conservative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                    case COMBINATION_ITEM:
                        int result = this.compareTo(((CombinationItem) item).getStringPart());
                        if (result == 0) {
                            return -1;
                        }
                        return result;
    
                    case LIST_ITEM:
                        return -1; // 1.any < 1-1
    
                    default:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    ----
    
    The log shows e.g. which source files constitute the `stableSources` for the `compileJava` task.
    To find the actual differences between two builds you need to resort to matching up and comparing those hashes yourself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    [[sub:cache_metadata]]
    === Separate metadata cache
    
    Gradle keeps a record of various aspects of dependency resolution in binary format in the metadata cache.
    The information stored in the metadata cache includes:
    
    * The result of resolving a dynamic version (e.g. `1.+`) to a concrete version (e.g. `1.2`).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    	// 1 if not.
    	_, err := Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    
    	// Git reports "is an ancestor" with exit code 0 and "not an ancestor" with
    	// exit code 1.
    	// Unfortunately, if we've already fetched rev with a shallow history, git
    	// merge-base has been observed to report a false-negative, so don't stop yet
    	// even if the exit code is 1!
    	if err == nil {
    		return true, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    .. TENCENT
    .. everything else
    . higher major versions take precedence over lower ones
    . higher minor versions take precedence over lower ones
    . installation paths take precedence according to their lexicographic ordering (last resort criteria for deterministically deciding
    between installations of the same type, from the same vendor and with the same version)
    
    All these rules are applied as multilevel sorting criteria, *in the order shown*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top