Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for fieldsV1 (2.13 sec)

  1. src/runtime/traceback.go

    //	};
    //
    // The PC field will be a value returned by a call to the traceback
    // function.
    //
    // The first time the function is called for a particular traceback,
    // all the fields except PC will be 0. The function should fill in the
    // other fields if possible, setting them to 0/nil if the information
    // is not available. The Data field may be used to store any useful
    // information across calls. The More field should be set to non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// If this is unset, all resources matched by the policy are validated by this binding
    	// When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
    	// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final transient int segmentMask;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	// current is state after applying all of those.
    	endpointsChanges *proxy.EndpointsChangeTracker
    	serviceChanges   *proxy.ServiceChangeTracker
    
    	mu           sync.Mutex // protects the following fields
    	svcPortMap   proxy.ServicePortMap
    	endpointsMap proxy.EndpointsMap
    	nodeLabels   map[string]string
    	// endpointSlicesSynced, and servicesSynced are set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	}
    	kc, err := loader.Load()
    	if err != nil {
    		return nil, fmt.Errorf(errFmt, name, err)
    	}
    
    	// EvictionHard may be nil if it was not set in kubelet's config file.
    	// EvictionHard can have OS-specific fields, which is why there's no default value for it.
    	// See: https://github.com/kubernetes/kubernetes/pull/110263
    	if kc.EvictionHard == nil {
    		kc.EvictionHard = eviction.DefaultEvictionHard
    	}
    	return kc, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
       * Mask value for indexing into segments. The upper bits of a key's hash code are used to choose
       * the segment.
       */
      final transient int segmentMask;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/time/format.go

    // Duplicates functionality in strconv, but avoids dependency.
    func appendInt(b []byte, x int, width int) []byte {
    	u := uint(x)
    	if x < 0 {
    		b = append(b, '-')
    		u = uint(-x)
    	}
    
    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    	// current is state after applying all of those.
    	endpointsChanges *proxy.EndpointsChangeTracker
    	serviceChanges   *proxy.ServiceChangeTracker
    
    	mu           sync.Mutex // protects the following fields
    	svcPortMap   proxy.ServicePortMap
    	endpointsMap proxy.EndpointsMap
    	nodeLabels   map[string]string
    	// endpointSlicesSynced, and servicesSynced are set to true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    }
    
    // containerChanged will determine whether the container has changed based on the fields that will affect the running of the container.
    // Currently, there are only `image` and `name` fields.
    // we don't need to consider the pod UID here, because we find the containerStatus through the pod UID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  10. src/text/template/exec_test.go

    	{"ideal too big", "{{typeOf " + bigUint + "}}", "", 0, false},
    	{"ideal nil without type", "{{nil}}", "", 0, false},
    
    	// Fields of structs.
    	{".X", "-{{.X}}-", "-x-", tVal, true},
    	{".U.V", "-{{.U.V}}-", "-v-", tVal, true},
    	{".unexported", "{{.unexported}}", "", tVal, false},
    
    	// Fields on maps.
    	{"map .one", "{{.MSI.one}}", "1", tVal, true},
    	{"map .two", "{{.MSI.two}}", "2", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top