Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 222 for recordDef (0.19 sec)

  1. pkg/controller/servicecidrs/servicecidrs_controller.go

    	ipAddressInformer networkinginformers.IPAddressInformer,
    	client clientset.Interface,
    ) *Controller {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	recorder := broadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: controllerName})
    	c := &Controller{
    		client: client,
    		queue: workqueue.NewTypedRateLimitingQueueWithConfig(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	// the argument passed here to -o ends up recorded in the final
    	// shared library in the LC_ID_DYLIB load command.
    	// To avoid putting the temporary output directory name there
    	// (and making the resulting shared library useless),
    	// run the link in the output directory so that -o can name
    	// just the final path element.
    	// On Windows, DLL file name is recorded in PE file
    	// export section, so do like on OS X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. cmd/utils.go

    // profilerWrapper is created because pkg/profiler doesn't
    // provide any API to calculate the profiler file path in the
    // disk since the name of this latter is randomly generated.
    type profilerWrapper struct {
    	// Profile recorded at start of benchmark.
    	records map[string][]byte
    	stopFn  func() ([]byte, error)
    	ext     string
    }
    
    // record will record the profile and store it as the base.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/audit.go

    			klog.V(2).Info("No audit policy file provided, no events will be recorded for log backend")
    		} else {
    			logBackend = o.LogOptions.newBackend(w)
    		}
    	}
    
    	// 3. Build webhook backend
    	var webhookBackend audit.Backend
    	if o.WebhookOptions.enabled() {
    		if evaluator == nil {
    			klog.V(2).Info("No audit policy file provided, no events will be recorded for webhook backend")
    		} else {
    			if c.EgressSelector != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 24 06:30:04 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            1 * valueSnapshotter.snapshot(_) >> inputsSnapshot
            1 * store.getIfPresent(keyHash) >> cachedEntry
            if (expired) {
                // should check that the recorded service call returns the same value
                1 * record.getInput() >> '124'
                1 * record.getOutput() >> TestHashCodes.hashCodeFrom(10000)
                1 * cachedResult.isChanging() >> changing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    						IsResourceRequest: tc.IsResourceRequest,
    						Path:              tc.Path,
    					}))
    
    					handler.ServeHTTP(recorder, req)
    
    					if tc.ExpectDelegateCalled != delegateCalled {
    						t.Errorf("expected delegated called %v, got %v", tc.ExpectDelegateCalled, delegateCalled)
    					}
    					result := recorder.Result()
    					content, _ := io.ReadAll(result.Body)
    					if e, a := expectStatus, result.StatusCode; e != a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.go

    			// On OS X, the linker output name gets recorded in the
    			// shared library's LC_ID_DYLIB load command.
    			// The code invoking the linker knows to pass only the final
    			// path element. Arrange that the path element matches what
    			// we'll install it as; otherwise the library is only loadable as "a.out".
    			// On Windows, DLL file name is recorded in PE file
    			// export section, so do like on OS X.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status.go

    	kl.recorder.Eventf(kl.nodeRef, eventType, event, "Node %s status is now: %s", kl.nodeName, event)
    }
    
    // recordEvent records an event for this node, the Kubelet's nodeRef is passed to the recorder
    func (kl *Kubelet) recordEvent(eventType, event, message string) {
    	kl.recorder.Eventf(kl.nodeRef, eventType, event, message)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      public void testServiceStartupTimes_selfStartingServices() {
        // This tests to ensure that:
        // 1. service times are accurate when the service is started by the manager
        // 2. service times are recorded when the service is not started by the manager (but they may
        // not be accurate).
        final Service b =
            new NoOpDelayedService(353) {
              @Override
              protected void doStart() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/volume_manager.go

    	kubeClient clientset.Interface,
    	volumePluginMgr *volume.VolumePluginMgr,
    	kubeContainerRuntime container.Runtime,
    	mounter mount.Interface,
    	hostutil hostutil.HostUtils,
    	kubeletPodsDir string,
    	recorder record.EventRecorder,
    	blockVolumePathHandler volumepathhandler.BlockVolumePathHandler) VolumeManager {
    
    	seLinuxTranslator := util.NewSELinuxLabelTranslator()
    	vm := &volumeManager{
    		kubeClient:          kubeClient,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top