Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,108 for highest (0.25 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

        /**
         * Sets the order of precedence of attributes when resolving ambiguity. Attributes listed first have higher precedence.
         * <p>
         * By default, there is no explicit precedence between attributes and all attributes must be considered when disambiguating.
         *
         * @param attributes the attributes in order, highest priority first
         * @since 7.5
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_retract_self_pseudo_v0.0.0-20200325131415-0123456789ab

    This version is not retracted. It should be returned by the proxy's
    @latest endpoint. It should match the @latest version query.
    
    TODO(golang.org/issue/24031): the proxy and proxy.golang.org both return
    the highest release version from the @latest endpoint, even if that
    version is retracted, so there is no way for the go command to
    discover an unretracted pseudo-version.
    
    -- .mod --
    module example.com/retract/self/pseudo
    
    go 1.15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 21:17:01 UTC 2020
    - 568 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_replaced.txt

    go mod edit -replace=example.com/x=./x
    go get example.com/x
    
    go list -m example.com/x
    stdout '^example.com/x v0.0.0-00010101000000-000000000000 '
    
    # If specific-version replacements exist, the highest matching version should be used.
    go mod edit -replace=example.com/x@v0.1.0=./x
    go mod edit -replace=example.com/x@v0.2.0=./x
    
    go get example.com/x
    go list -m example.com/x
    stdout '^example.com/x v0.2.0 '
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatedClassloaderWorker.java

            if (classLoaderStructure.getParent() == null) {
                // This is the highest parent in the hierarchy
                return createClassLoaderFromSpec(workerInfrastructureClassloader, classLoaderStructure.getSpec(), legacyTypesSupport);
            } else {
                // Climb up the hierarchy looking for the highest parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/preemption/preemption.go

    				return int64(math.MinInt64)
    			}
    			// The bigger the earliestStartTimeOnNode, the higher the score.
    			return earliestStartTimeOnNode.UnixNano()
    		}
    
    		// Each scoreFunc scores the nodes according to specific rules and keeps the name of the node
    		// with the highest score. If and only if the scoreFunc has more than one node with the highest
    		// score, we will execute the other scoreFunc in order of precedence.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_386.s

    _0through4:
    	MOVL	-4(SI)(BP*1), BX
    	MOVL	-4(DI)(BP*1), CX
    	CMPL	BX, CX
    	JEQ	allsame
    
    diff4:
    	BSWAPL	BX	// reverse order of bytes
    	BSWAPL	CX
    	XORL	BX, CX	// find bit differences
    	BSRL	CX, CX	// index of highest bit difference
    	SHRL	CX, BX	// move a's bit to bottom
    	ANDL	$1, BX	// mask bit
    	LEAL	-1(BX*2), BX // 1/0 => +1/-1
    	MOVL	BX, (AX)
    	RET
    
    	// 0-3 bytes in common
    small:
    	LEAL	(BP*8), CX
    	NEGL	CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

     * while {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code \\uxxxx}.
     *
     * <p>The size of the data structure used by {@link ArrayBasedCharEscaper} is proportional to the
     * highest valued character that requires escaping. For example a replacement map containing the
     * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/CharEscaperBuilder.java

        @CheckForNull
        protected char[] escape(char c) {
          return c < replaceLength ? replacements[c] : null;
        }
      }
    
      // Replacement mappings.
      private final Map<Character, String> map;
    
      // The highest index we've seen so far.
      private int max = -1;
    
      /** Construct a new sparse array builder. */
      public CharEscaperBuilder() {
        this.map = new HashMap<>();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}.
     *
     * <p>The size of the data structure used by {@link ArrayBasedUnicodeEscaper} is proportional to the
     * highest valued code point that requires escaping. For example a replacement map containing the
     * single character '{@code \}{@code u1000}' will require approximately 16K of memory. If you need
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. pkg/apis/scheduling/validation/validation_test.go

    			Value:      100,
    		},
    		"with description": {
    			ObjectMeta:    metav1.ObjectMeta{Name: "tier1", Namespace: ""},
    			Value:         200,
    			GlobalDefault: false,
    			Description:   "Used for the highest priority pods.",
    		},
    		"system node critical": {
    			ObjectMeta:    metav1.ObjectMeta{Name: spcs[0].Name, Namespace: ""},
    			Value:         spcs[0].Value,
    			GlobalDefault: spcs[0].GlobalDefault,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top