Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for flavor (0.15 sec)

  1. configure.py

        error_msg: (String) String with one and only one '%s'. Formatted with each
          invalid response upon check_success(input) failure.
        suppress_default_error: (Bool) Suppress the above error message in favor of
          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       * uncommon to specify {@code concurrencyLevel(1)} in order to achieve more deterministic eviction
       * behavior.
       *
       * <p>Note that future implementations may abandon segment locking in favor of more advanced
       * concurrency controls.
       *
       * @return this {@code CacheBuilder} instance (for chaining)
       * @throws IllegalArgumentException if {@code concurrencyLevel} is nonpositive
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

         *
         * On the other hand, the current signature is consistent with the similar allAsList method. And
         * eventually this method may go away entirely in favor of an API like
         * whenAllComplete().collectSuccesses(). That API would have a signature more like the current
         * one.
         */
        return new ListFuture<V>(ImmutableList.copyOf(futures), false);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    If an included build is used:
    
    - the configuration file of the _current_ build is used for verification
    - so if the included build itself uses verification, its configuration is ignored in favor of the current one
    - which means that including a build works similarly to upgrading a dependency: it may require you to update your current verification metadata
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "LAO", argLength: 3, reg: gpstore, asm: "LAO", typ: "Mem", clobberFlags: true, hasSideEffects: true},         // *arg0 |= arg1. arg2 = mem.
    		{name: "LAOfloor", argLength: 3, reg: gpstorelab, asm: "LAO", typ: "Mem", clobberFlags: true, hasSideEffects: true}, // *(floor(arg0, 4)) |= arg1. arg2 = mem.
    
    		// Compare and swap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

         *
         * On the other hand, the current signature is consistent with the similar allAsList method. And
         * eventually this method may go away entirely in favor of an API like
         * whenAllComplete().collectSuccesses(). That API would have a signature more like the current
         * one.
         */
        return new ListFuture<V>(ImmutableList.copyOf(futures), false);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais2.go

    	// short patterns like SLS will often be the same character sequences
    	// repeated throughout the text, reducing maxID relative to numLMS.
    	//
    	// For short inputs, the averages may not run in our favor, but then we
    	// can often fall back to using the length-512 tmp available in the
    	// top-most call. (Also a short allocation would not be a big deal.)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    		len(ps.virtualServiceIndex.publicByGateway[gateway]))
    	res = append(res, ps.virtualServiceIndex.privateByNamespaceAndGateway[name]...)
    	res = append(res, ps.virtualServiceIndex.exportedToNamespaceByGateway[name]...)
    	// Favor same-namespace Gateway routes, to give the "consumer override" preference.
    	// We do 2 iterations here to avoid extra allocations.
    	for _, vs := range ps.virtualServiceIndex.publicByGateway[gateway] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	}
    	// symbol already exists
    	if osym.Dupok() {
    		if l.flags&FlagStrictDups != 0 {
    			l.checkdup(name, r, li, oldi)
    		}
    		// Fix for issue #47185 -- given two dupok symbols with
    		// different sizes, favor symbol with larger size. See
    		// also issue #46653.
    		szdup := l.SymSize(oldi)
    		sz := int64(r.Sym(li).Siz())
    		if szdup < sz {
    			// new symbol overwrites old symbol.
    			l.objSyms[oldi] = objSym{r.objidx, li}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top