Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 177 for localisty (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. istioctl/pkg/proxyconfig/proxyconfig.go

    		"Envoy config dump JSON file")
    
    	return endpointConfigCmd
    }
    
    // edsConfigCmd is a command to dump EDS output. This differs from "endpoints" which pulls from /clusters.
    // Notably, this shows metadata and locality, while clusters shows outlier health status
    func edsConfigCmd(ctx cli.Context) *cobra.Command {
    	var podName, podNamespace string
    
    	endpointConfigCmd := &cobra.Command{
    		Use: "eds [<type>/]<name>[.<namespace>]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  6. src/runtime/arena.go

    // potentially before a GC cycle, means that a garbage collection cycle can be
    // delayed, improving efficiency by reducing GC cycle frequency. There are other
    // potential efficiency benefits, such as improved locality and access to a more
    // efficient allocation strategy.
    //
    // What makes the arenas here safe is that once they are freed, accessing the
    // arena's memory will cause an explicit program fault, and the arena's address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    			want: []framework.NodePluginScores{
    				{Name: "node1", Scores: []framework.PluginScore{}},
    				{Name: "node2", Scores: []framework.PluginScore{}},
    			},
    		},
    		{
    			name: "the score from Image Locality plugin with image in all nodes",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Image: "gcr.io/40",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    // they are allocated. There are various benefits to delaying zeroing
    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Prefetch instructions
    		// Do prefetch arg0 address. arg0=addr, arg1=memory. Instruction variant selects locality hint
    		{name: "PrefetchT0", argLength: 2, reg: prefreg, asm: "PREFETCHT0", hasSideEffects: true},
    		{name: "PrefetchNTA", argLength: 2, reg: prefreg, asm: "PREFETCHNTA", hasSideEffects: true},
    
    		// CPUID feature: BMI1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
Back to top