Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 98 for assign_id (1.21 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    					runtime.HandleError(fmt.Errorf("the cluster IP [%v]:%s for service %s/%s was assigned to other services %s/%s; please recreate", family, ip, svc.Namespace, svc.Name, refService.Namespace, refService.Name))
    					break
    				}
    			}
    		}
    
    		// IPAddress must have the corresponding labels assigned by the allocator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/assign.go

    	}
    
    	var assigned ir.NameSet
    	var memWrite, deferResultWrite bool
    
    	// affected reports whether expression n could be affected by
    	// the assignments applied so far.
    	affected := func(n ir.Node) bool {
    		if deferResultWrite {
    			return true
    		}
    		return ir.Any(n, func(n ir.Node) bool {
    			if n.Op() == ir.ONAME && assigned.Has(n.(*ir.Name)) {
    				return true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    		{
    			name: "A pod which can be scheduled on a dedicated node assigned to user1 with effect NoSchedule",
    			pod:  podWithTolerations("pod1", []v1.Toleration{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}),
    		},
    		{
    			name: "A pod which can't be scheduled on a dedicated node assigned to user2 with effect NoSchedule",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. src/net/ip.go

    // RFC 1918 (IPv4 addresses) and RFC 4193 (IPv6 addresses).
    func (ip IP) IsPrivate() bool {
    	if ip4 := ip.To4(); ip4 != nil {
    		// Following RFC 1918, Section 3. Private Address Space which says:
    		//   The Internet Assigned Numbers Authority (IANA) has reserved the
    		//   following three blocks of the IP address space for private internets:
    		//     10.0.0.0        -   10.255.255.255  (10/8 prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. helm/minio/values.yaml

        requests:
          memory: 128Mi
      # Command to run after the main command on exit
      exitCommand: ""
    
    ## List of users to be created after minio install
    ##
    users:
      ## Username, password and policy to be assigned to the user
      ## Default policies are [readonly|readwrite|writeonly|consoleAdmin|diagnostics]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pkg/controlplane/instance.go

    type Extra struct {
    	EndpointReconcilerConfig EndpointReconcilerConfig
    	KubeletClientConfig      kubeletclient.KubeletClientConfig
    
    	// Values to build the IP addresses used by discovery
    	// The range of IPs to be assigned to services with type=ClusterIP or greater
    	ServiceIPRange net.IPNet
    	// The IP address for the GenericAPIServer service (must be inside ServiceIPRange)
    	APIServerServiceIP net.IP
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. pkg/controller/tainteviction/taint_eviction.go

    	nodeName     string
    }
    
    func hash(val string, max int) int {
    	hasher := fnv.New32a()
    	io.WriteString(hasher, val)
    	return int(hasher.Sum32() % uint32(max))
    }
    
    // GetPodsByNodeNameFunc returns the list of pods assigned to the specified node.
    type GetPodsByNodeNameFunc func(nodeName string) ([]*v1.Pod, error)
    
    // Controller listens to Taint/Toleration changes and is responsible for removing Pods
    // from Nodes tainted with NoExecute Taints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        //  it is explicitly spelled.
    
        private final DisplayName displayName;
        // Null when the value has been calculated and assigned to the result field. When not null the result has not been calculated
        // or is currently being calculated or has just been calculated. It is possible for both this field and the result field to be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device_context.cc

    #include "tensorflow/core/common_runtime/dma_helper.h"
    #include "tensorflow/core/framework/tensor_reference.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    
    // The allocator used for Tensors assigned to the XLA device.
    XlaDeviceAllocator::XlaDeviceAllocator(
        stream_executor::StreamExecutor* stream_executor)
        : stream_executor_(stream_executor) {}
    
    XlaDeviceAllocator::~XlaDeviceAllocator() = default;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    	// it depends on are the remaining objects on that path. Color encoding
    	// is such that the color value of a grey object indicates the index of
    	// that object in the object path.
    
    	// During type-checking, white objects may be assigned a type without
    	// traversing through objDecl; e.g., when initializing constants and
    	// variables. Update the colors of those objects here (rather than
    	// everywhere where we set the type) to satisfy the color invariants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top