Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for addSources (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

            def matchingChildren = op.children.findAll { it.hasDetailsOfType(ExecuteListenerBuildOperationType.Details) && it.details.applicationId == expectedApplicationId }
            verifyExpectedOps(matchingChildren, addSource(expectedOps, sourceName))
            matchingChildren
        }
    
        private static void verifyHasNoChildren(BuildOperationRecord op, long expectedApplicationId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/memory_manager.go

    type runtimeService interface {
    	UpdateContainerResources(ctx context.Context, id string, resources *runtimeapi.ContainerResources) error
    }
    
    type sourcesReadyStub struct{}
    
    func (s *sourcesReadyStub) AddSource(source string) {}
    func (s *sourcesReadyStub) AllReady() bool          { return true }
    
    // Manager interface provides methods for Kubelet to manage pod memory.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// pendingAdmissionPod contain the pod during the admission phase
    	pendingAdmissionPod *v1.Pod
    }
    
    var _ Manager = &manager{}
    
    type sourcesReadyStub struct{}
    
    func (s *sourcesReadyStub) AddSource(source string) {}
    func (s *sourcesReadyStub) AllReady() bool          { return true }
    
    // NewManager creates new cpu manager based on provided policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  4. src/log/slog/logger_test.go

    	})
    
    	// Once slog.SetDefault is called, the direction is reversed: the default
    	// log.Logger's output goes through the handler.
    	SetDefault(New(NewTextHandler(&slogbuf, &HandlerOptions{AddSource: true})))
    	log.Print("msg2")
    	checkLogOutput(t, slogbuf.String(), "time="+textTimeRE+` level=INFO source=.*logger_test.go:\d{3}"? msg=msg2`)
    
    	// The default log.Logger always outputs at Info level.
    	slogbuf.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg log/slog, type Handler interface, WithAttrs([]Attr) Handler #56345
    pkg log/slog, type Handler interface, WithGroup(string) Handler #56345
    pkg log/slog, type HandlerOptions struct #56345
    pkg log/slog, type HandlerOptions struct, AddSource bool #56345
    pkg log/slog, type HandlerOptions struct, Level Leveler #56345
    pkg log/slog, type HandlerOptions struct, ReplaceAttr func([]string, Attr) Attr #56345
    pkg log/slog, type JSONHandler struct #56345
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager.go

    }
    
    type sourcesReadyStub struct{}
    
    // PodReusableDevices is a map by pod name of devices to reuse.
    type PodReusableDevices map[string]map[string]sets.Set[string]
    
    func (s *sourcesReadyStub) AddSource(source string) {}
    func (s *sourcesReadyStub) AllReady() bool          { return true }
    
    // NewManagerImpl creates a new manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    			klog.ErrorS(nil, "Kubelet does not support snapshot update")
    		default:
    			klog.ErrorS(nil, "Invalid operation type received", "operation", u.Op)
    		}
    
    		kl.sourcesReady.AddSource(u.Source)
    
    	case e := <-plegCh:
    		if isSyncPodWorthy(e) {
    			// PLEG event for a pod; sync it.
    			if pod, ok := kl.podManager.GetPodByUID(e.ID); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Float64", Func, 21},
    		{"Float64Value", Func, 21},
    		{"Group", Func, 21},
    		{"GroupValue", Func, 21},
    		{"Handler", Type, 21},
    		{"HandlerOptions", Type, 21},
    		{"HandlerOptions.AddSource", Field, 21},
    		{"HandlerOptions.Level", Field, 21},
    		{"HandlerOptions.ReplaceAttr", Field, 21},
    		{"Info", Func, 21},
    		{"InfoContext", Func, 21},
    		{"Int", Func, 21},
    		{"Int64", Func, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top