Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for assign_id (0.14 sec)

  1. cmd/kubeadm/app/apis/kubeadm/types.go

    	// are used; in case the ControlPlaneEndpoint is specified but without a TCP port,
    	// the BindPort is used.
    	// Possible usages are:
    	// e.g. In a cluster with more than one control plane instances, this field should be
    	// assigned the address of the external load balancer in front of the
    	// control plane instances.
    	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    // used to indicate that an IngressClass should be considered default. When a
    // single IngressClass resource has this annotation set to true, new Ingress
    // resources without a class specified will be assigned this default class.
    type IngressClass struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(cancellationSuccess.get());
            // cancellation can interleave in 3 ways
            // 1. prior to setFuture
            // 2. after setFuture before set() on the future assigned
            // 3. after setFuture and set() are called but before the listener completes.
            if (!setFutureSetSuccess.get() || !setFutureCompletionSuccess.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// are used; in case the ControlPlaneEndpoint is specified but without a TCP port,
    	// the BindPort is used.
    	// Possible usages are:
    	// e.g. In a cluster with more than one control plane instances, this field should be
    	// assigned the address of the external load balancer in front of the
    	// control plane instances.
    	// e.g.  in environments with enforced node recycling, the ControlPlaneEndpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	}
    	return result, unprocessed
    }
    
    func (sp *sourcePrinter) initSamples(flat, cum map[uint64]int64) {
    	for addr, inst := range sp.insts {
    		// Move all samples that were assigned to the middle of an instruction to the
    		// beginning of that instruction. This takes care of samples that were recorded
    		// against pc+1.
    		instEnd := addr + uint64(inst.length)
    		for p := addr; p < instEnd; p++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    	AttrLocal
    
    	// For function symbols; indicates that the specified function was the
    	// target of an inline during compilation
    	AttrWasInlined
    
    	// Indexed indicates this symbol has been assigned with an index (when using the
    	// new object file format).
    	AttrIndexed
    
    	// Only applied on type descriptor symbols, UsedInIface indicates this type is
    	// converted to an interface.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/encoding/json/decode.go

    // not appropriate for a value of a specific Go type.
    type UnmarshalTypeError struct {
    	Value  string       // description of JSON value - "bool", "array", "number -5"
    	Type   reflect.Type // type of Go value it could not be assigned to
    	Offset int64        // error occurred after reading Offset bytes
    	Struct string       // name of the struct type containing the field
    	Field  string       // the full path from root node to the field
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. src/text/template/exec.go

    	// error to the caller.
    	if err != nil {
    		s.at(node)
    		s.errorf("error calling %s: %w", name, err)
    	}
    	return unwrap(v)
    }
    
    // canBeNil reports whether an untyped nil can be assigned to the type. See reflect.Zero.
    func canBeNil(typ reflect.Type) bool {
    	switch typ.Kind() {
    	case reflect.Chan, reflect.Func, reflect.Interface, reflect.Map, reflect.Pointer, reflect.Slice:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/runtime/stack.go

    	stackForceMove = uintptrMask & -275
    
    	// stackPoisonMin is the lowest allowed stack poison value.
    	stackPoisonMin = uintptrMask & -4096
    )
    
    // Global pool of spans that have free stacks.
    // Stacks are assigned an order according to size.
    //
    //	order = log_2(size/FixedStack)
    //
    // There is a free list for each order.
    var stackpool [_NumStackOrders]struct {
    	item stackpoolItem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top