Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,259 for startm (0.12 sec)

  1. pkg/kube/kclient/delayed.go

    		(*c).Start(stop)
    	}
    	s.hm.Lock()
    	defer s.hm.Unlock()
    	s.started = stop
    }
    
    var _ Informer[controllers.Object] = &delayedClient[controllers.Object]{}
    
    func (s *delayedClient[T]) set(inf Informer[T]) {
    	if inf != nil {
    		s.inf.Swap(&inf)
    		s.hm.Lock()
    		defer s.hm.Unlock()
    		for _, h := range s.handlers {
    			inf.AddEventHandler(h)
    		}
    		s.handlers = nil
    		if s.started != nil {
    			inf.Start(s.started)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 31 02:32:59 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	EvGoCreateBlocked // goroutine creation (starts blocked) [timestamp, new goroutine ID, new stack ID, stack ID]
    
    	// GoStatus with stack. Added in Go 1.23.
    	EvGoStatusStack // goroutine status at the start of a generation, with a stack [timestamp, goroutine ID, M ID, status, stack ID]
    
    	// Batch event for an experimental batch with a custom format. Added in Go 1.23.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/pluginmanager/plugin_manager.go

    type PluginManager interface {
    	// Starts the plugin manager and all the asynchronous loops that it controls
    	Run(sourcesReady config.SourcesReady, stopCh <-chan struct{})
    
    	// AddHandler adds the given plugin handler for a specific plugin type, which
    	// will be added to the actual state of world cache so that it can be passed to
    	// the desired state of world cache in order to be used during plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        // Once the root build starts configuring, we are in Configuring phase
                        phaseStarted(startEvent, Phase.Configuring);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_BUILD && currentPhase == Phase.Configuring) {
                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/cluster.go

    	// This must be done before we build components, so they can access the filter.
    	namespaces := kclient.New[*corev1.Namespace](c.Client)
    	// This will start a namespace informer and wait for it to be ready. So we must start it in a go routine to avoid blocking.
    	filter := filter.NewDiscoveryNamespacesFilter(namespaces, mesh, c.stop)
    	kube.SetObjectFilter(c.Client, filter)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/TimeoutHandler.java

        /**
         * Starts a timeout for the given thread. The thread is interrupted if the given timeout is exceeded.
         * The returned {@link Timeout} object must be used to stop the timeout once the thread has completed
         * the work that this timeout was supposed to limit, otherwise it may be interrupted doing
         * some other work later.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. security/pkg/util/certutil_test.go

    			// Cert TTL is 24h, and grace period is 50% of TTL, that is 12h.
    			// The cert expires at 2017-08-24 19:00:40 +0000 UTC, so the grace period starts at 2017-08-24 07:00:40 +0000 UTC
    			// The wait time is the duration from fake now to the grace period start time, which is 10h39s (36039s).
    			cert:             testCert,
    			now:              time.Date(2017, time.August, 23, 21, 0, 0, 40, time.UTC),
    			expectedWaitTime: 36039,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. pkg/tracing/tracing.go

    		ctx = pg.Extract(ctx, propagation.MapCarrier{"traceparent": p})
    	}
    	globalCtx, globalSpan := Start(ctx, rootSpan)
    	return globalCtx, func() {
    		globalSpan.End()
    		shutdown()
    	}, nil
    }
    
    func Start(ctx context.Context, span string) (context.Context, traceapi.Span) {
    	return tracer().Start(ctx, span)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/internal/filepathlite/path_windows.go

    		return uncLen(path, len(`\\.\UNC\`))
    
    	case pathHasPrefixFold(path, `\\.`) ||
    		pathHasPrefixFold(path, `\\?`) || pathHasPrefixFold(path, `\??`):
    		// Path starts with \\.\, and is a Local Device path; or
    		// path starts with \\?\ or \??\ and is a Root Local Device path.
    		//
    		// We treat the next component after the \\.\ prefix as
    		// part of the volume name, which means Clean(`\\?\c:\`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v1beta1/kms_plugin_mock.go

    	return s.lastEncryptRequest.Plain
    }
    
    // SetVersion sets the version of kms-plugin.
    func (s *Base64Plugin) SetVersion(ver string) {
    	s.ver = ver
    }
    
    // start starts plugin's gRPC service.
    func (s *Base64Plugin) start() error {
    	var err error
    	s.listener, err = net.Listen(unixProtocol, s.socketPath)
    	if err != nil {
    		return fmt.Errorf("failed to listen on the unix socket, error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top