Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 166 for assign_id (0.19 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    // is not defined for r.
    func (r Region) M49() int {
    	return int(m49[r])
    }
    
    // IsPrivateUse reports whether r has the ISO 3166 User-assigned status. This
    // may include private-use tags that are assigned by CLDR and used in this
    // implementation. So IsPrivateUse and IsCountry can be simultaneously true.
    func (r Region) IsPrivateUse() bool {
    	return r.typ()&iso3166UserAssigned != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K 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. plugin/pkg/admission/noderestriction/admission.go

    		return p.admitCSINode(nodeName, a)
    
    	case resourceSliceResource:
    		return p.admitResourceSlice(nodeName, a)
    
    	default:
    		return nil
    	}
    }
    
    // admitPod allows creating or deleting a pod if it is assigned to the
    // current node and fulfills related criteria.
    func (p *Plugin) admitPod(nodeName string, a admission.Attributes) error {
    	switch a.GetOperation() {
    	case admission.Create:
    		return p.admitPodCreate(nodeName, a)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/walk/order.go

    }
    
    // addrTemp ensures that n is okay to pass by address to runtime routines.
    // If the original argument n is not okay, addrTemp creates a tmp, emits
    // tmp = n, and then returns tmp.
    // The result of addrTemp MUST be assigned back to n, e.g.
    //
    //	n.Left = o.addrTemp(n.Left)
    func (o *orderState) addrTemp(n ir.Node) ir.Node {
    	if n.Op() == ir.OLITERAL || n.Op() == ir.ONIL {
    		// TODO: expand this to all static composite literal nodes?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/go/ast/ast.go

    func (x *MapType) End() token.Pos       { return x.Value.End() }
    func (x *ChanType) End() token.Pos      { return x.Value.End() }
    
    // exprNode() ensures that only expression/type nodes can be
    // assigned to an Expr.
    func (*BadExpr) exprNode()        {}
    func (*Ident) exprNode()          {}
    func (*Ellipsis) exprNode()       {}
    func (*BasicLit) exprNode()       {}
    func (*FuncLit) exprNode()        {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/compile/internal/typecheck/expr.go

    		t = types.UntypedInt
    	}
    	return l, r, t
    }
    
    // tcArith typechecks operands of a binary arithmetic expression.
    // The result of tcArith MUST be assigned back to original operands,
    // t is the type of the expression, and should be set by the caller. e.g:
    //
    //	n.X, n.Y, t = tcArith(n, op, n.X, n.Y)
    //	n.SetType(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top