Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for populator (0.19 sec)

  1. pkg/config/validation/validation.go

    			return nil, fmt.Errorf("template is required")
    		}
    		// Do not call validateWorkloadEntry. Some fields, such as address, are required in WorkloadEntry
    		// but not in the template since they are auto populated
    
    		if wg.Metadata != nil {
    			if err := labels.Instance(wg.Metadata.Labels).Validate(); err != nil {
    				return nil, fmt.Errorf("invalid labels: %v", err)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	onRepeatedHeartbeatFailure func()
    
    	// podManager stores the desired set of admitted pods and mirror pods that the kubelet should be
    	// running. The actual set of running pods is stored on the podWorkers. The manager is populated
    	// by the kubelet config loops which abstracts receiving configuration from many different sources
    	// (api for regular pods, local filesystem or http for static pods). The manager may be consulted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    					// Copy values to "integer registers."
    					if v.flag&flagIndir != 0 {
    						offset := add(v.ptr, st.offset, "precomputed value offset")
    						intToReg(regs, st.ireg, st.size, offset)
    					} else {
    						// Only populate the Ints space on the return path.
    						// This is safe because out is kept alive until the
    						// end of this function, and the return path through
    						// makeFuncStub has no preemption, so these pointers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    // then jumps to the M method expecting the *Inner receiver.
    //
    // During reflect.Value.Call, we create an argument frame and the associated data structures
    // to describe it to the garbage collector, populate the frame, call reflect.call to
    // run a function call using that frame, and then copy the results back out of the frame.
    // The reflect.call function does a memmove of the frame structure onto the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top