Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for recordDef (0.16 sec)

  1. src/crypto/tls/handshake_test.go

    // reference connection will always change.
    
    var (
    	update       = flag.Bool("update", false, "update golden files on failure")
    	fast         = flag.Bool("fast", false, "impose a quick, possibly flaky timeout on recorded tests")
    	keyFile      = flag.String("keylog", "", "destination file for KeyLogWriter")
    	bogoMode     = flag.Bool("bogo-mode", false, "Enabled bogo shim mode, ignore everything else")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. src/internal/trace/trace_test.go

    			{trace.EventRegionEnd, trace.TaskID(1), []string{"region0"}},
    			{trace.EventTaskEnd, trace.TaskID(1), []string{"task0"}},
    			//  Currently, pre-existing region is not recorded to avoid allocations.
    			{trace.EventRegionBegin, trace.BackgroundTask, []string{"post-existing region"}},
    		}
    		r, err := trace.NewReader(bytes.NewReader(tb))
    		if err != nil {
    			t.Error(err)
    		}
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    		expectedRespStatus int
    		lifecycleResponse  []byte
    		errorResponse      APIErrorResponse
    		shouldPass         bool
    	},
    ) {
    	for i, testCase := range testCases {
    		// initialize httptest Recorder, this records any mutations to response writer inside the handler.
    		rec := httptest.NewRecorder()
    		// construct HTTP request
    		req, err := newTestSignedRequestV4(testCase.method, getBucketLifecycleURL("", testCase.bucketName),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  10. cmd/kube-proxy/app/server.go

    	select {
    	case err = <-healthzErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartProxierHealthcheck", "StartKubeProxy", err.Error())
    	case err = <-metricsErrCh:
    		s.Recorder.Eventf(s.NodeRef, nil, api.EventTypeWarning, "FailedToStartMetricServer", "StartKubeProxy", err.Error())
    	}
    	return err
    }
    
    func (s *ProxyServer) birthCry() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top