Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for localisty (0.2 sec)

  1. guava/src/com/google/common/primitives/ImmutableLongArray.java

     * </ul>
     *
     * <p>Advantages compared to {@link com.google.common.collect.ImmutableList ImmutableList}{@code
     * <Long>}:
     *
     * <ul>
     *   <li>Improved memory compactness and locality.
     *   <li>Can be queried without allocating garbage.
     *   <li>Access to {@code LongStream} features (like {@link LongStream#sum}) using {@code stream()}
     *       instead of the awkward {@code stream().mapToLong(v -> v)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

     * </ul>
     *
     * <p>Advantages compared to {@link com.google.common.collect.ImmutableList ImmutableList}{@code
     * <Long>}:
     *
     * <ul>
     *   <li>Improved memory compactness and locality.
     *   <li>Can be queried without allocating garbage.
     * </ul>
     *
     * <p>Disadvantages compared to {@code ImmutableList<Long>}:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ImmutableIntArray.java

     * </ul>
     *
     * <p>Advantages compared to {@link com.google.common.collect.ImmutableList ImmutableList}{@code
     * <Integer>}:
     *
     * <ul>
     *   <li>Improved memory compactness and locality.
     *   <li>Can be queried without allocating garbage.
     *   <li>Access to {@code IntStream} features (like {@link IntStream#sum}) using {@code stream()}
     *       instead of the awkward {@code stream().mapToInt(v -> v)}.
     * </ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/deadcode.go

    	"internal/abi"
    	"internal/buildcfg"
    	"strings"
    	"unicode"
    )
    
    var _ = fmt.Print
    
    type deadcodePass struct {
    	ctxt *Link
    	ldr  *loader.Loader
    	wq   heap // work queue, using min-heap for better locality
    
    	ifaceMethod        map[methodsig]bool // methods called from reached interface call sites
    	genericIfaceMethod map[string]bool    // names of methods called from reached generic interface call sites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    	case DW_FORM_data2: // constant
    		ctxt.AddInt(s, 2, value)
    
    	case DW_FORM_data4: // constant, {line,loclist,mac,rangelist}ptr
    		if cls == DW_CLS_PTR { // DW_AT_stmt_list and DW_AT_ranges
    			ctxt.AddDWARFAddrSectionOffset(s, data, value)
    			break
    		}
    		ctxt.AddInt(s, 4, value)
    
    	case DW_FORM_data8: // constant, {line,loclist,mac,rangelist}ptr
    		ctxt.AddInt(s, 8, value)
    
    	case DW_FORM_sdata: // constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_4x.md

    
    ## Version 4.4.1
    
    _2020-03-08_
    
     *  Fix: Don't reuse a connection on redirect if certs match but DNS does not. For better
        locality and performance OkHttp attempts to use the same pooled connection across redirects and
        follow-ups. It independently shares connections when the IP addresses and certificates match,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Ints.java

        // The Dolphin algorithm is attractive because it does the fewest array reads and writes: each
        // array slot is read and written exactly once. However, it can have very poor memory locality:
        // benchmarking shows it can take 7 times longer than the other two in some cases. The other two
        // do n swaps, minus a delta (0 or 2 for Reversal, gcd(d, n) for Successive), so that's about
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    		}
    	}
    }
    
    func TestValidateLocalities(t *testing.T) {
    	cases := []struct {
    		name       string
    		localities []string
    		valid      bool
    	}{
    		{
    			name:       "multi wildcard locality",
    			localities: []string{"*/zone/*"},
    			valid:      false,
    		},
    		{
    			name:       "wildcard not in suffix",
    			localities: []string{"*/zone"},
    			valid:      false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Ints.java

        // The Dolphin algorithm is attractive because it does the fewest array reads and writes: each
        // array slot is read and written exactly once. However, it can have very poor memory locality:
        // benchmarking shows it can take 7 times longer than the other two in some cases. The other two
        // do n swaps, minus a delta (0 or 2 for Reversal, gcd(d, n) for Successive), so that's about
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/types.go

    	Allocatable *Resource
    
    	// ImageStates holds the entry of an image if and only if this image is on the node. The entry can be used for
    	// checking an image's existence and advanced usage (e.g., image locality scheduling policy) based on the image
    	// state information.
    	ImageStates map[string]*ImageStateSummary
    
    	// PVCRefCounts contains a mapping of PVC names to the number of pods on the node using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
Back to top