Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for greatest (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			if event.Type == watch.Bookmark {
    				bookmarkReceived = true
    				// bookmark event has a RV greater than or equal to the before one
    				if rv < lastObservedResourceVersion {
    					t.Fatalf("Unexpected bookmark resourceVersion %v less than observed %v)", rv, lastObservedResourceVersion)
    				}
    			} else {
    				// non-bookmark event has a RV greater than anything before
    				if rv <= lastObservedResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	isIPv6 := proxier.iptables.IsIPv6()
    	if !isIPv6 && proxier.localhostNodePorts {
    		// Kube-proxy's use of `route_localnet` to enable NodePorts on localhost
    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates.
    
    		// NOTE: kubelet creates an identical copy of this rule. If you want to
    		// change this rule in the future, you MUST do so in a way that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    						v1.ResourceMemory: *resource.NewQuantity(1024, resource.BinarySI),
    						v1.ResourcePods:   *resource.NewQuantity(110, resource.DecimalSI),
    					},
    				},
    			},
    		},
    		{
    			desc:        "podsPerCore greater than zero, but less than maxPods/cores",
    			node:        &v1.Node{},
    			maxPods:     10,
    			podsPerCore: 4,
    			machineInfo: &cadvisorapiv1.MachineInfo{
    				NumCores:       2,
    				MemoryCapacity: 1024,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	var status *framework.Status
    
    	podsAdded := false
    	// We run filters twice in some cases. If the node has greater or equal priority
    	// nominated pods, we run them when those pods are added to PreFilter state and nodeInfo.
    	// If all filters succeed in this pass, we run them again when these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    	l.SetSymPkg(dst, l.SymPkg(src))
    	// TODO: other attributes?
    }
    
    // CreateExtSym creates a new external symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateExtSym(name string, ver int) Sym {
    	return l.newExtSym(name, ver)
    }
    
    // CreateStaticSym creates a new static symbol with the specified name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [CAUTION]
    ====
    Never use `new File(relative path)` unless passed to `file()` or `files()` or `from()` or other methods defined in terms of `file()` or `files()`.
    Otherwise, this creates a path relative to the current working directory (CWD).
    Gradle can make no guarantees about the location of the CWD, which means builds that rely on it may break at any time.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    	// that the scavenger should keep as a buffer space for the allocator.
    	// This constant is used when we do not have a memory limit set.
    	//
    	// The purpose of maintaining this overhead is to have a greater pool of
    	// unscavenged memory available for allocation (since using scavenged memory
    	// incurs an additional cost), to account for heap fragmentation and
    	// the ever-changing layout of the heap.
    	retainExtraPercent = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    			// to be compatible with the one used in expand_calls.go
    			// as opposed to decompose.go. The expand calls code just
    			// takes the base name and creates an offset into it,
    			// without using the SplitOf/SplitOffset fields. The code
    			// in decompose.go does the opposite -- it creates a
    			// LocalSlot object with "Off" set to zero, but with
    			// SplitOf pointing to a parent slot, and SplitOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       */
    
      // Constants
    
      /**
       * The maximum capacity, used if a higher value is implicitly specified by either of the
       * constructors with arguments. MUST be a power of two no greater than {@code 1<<30} to ensure
       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top