Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,379 for startm (0.2 sec)

  1. pkg/controller/cronjob/utils.go

    	//
    	// However, if there is a bug somewhere, or incorrect clock
    	// on controller's server or apiservers (for setting creationTimestamp)
    	// then there could be so many missed start times (it could be off
    	// by decades or more), that it would eat up all the CPU and memory
    	// of this controller. In that case, we want to not try to list
    	// all the missed start times.
    	//
    	// I've somewhat arbitrarily picked 100, as more than 80,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

         */
        ProgressLogger start(String description, String status);
    
        /**
         * Logs the start of the operation, with no initial status.
         */
        void started();
    
        /**
         * Logs the start of the operation, with the given status.
         *
         * @param status The initial status message. Can be null or empty.
         */
        void started(String status);
    
        /**
         * Logs some progress, indicated by a new status.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. pkg/kube/kclient/interfaces.go

    	// to the underlying informer are not touched
    	ShutdownHandlers()
    	// Start starts just this informer. Typically, this is not used. Instead, the `kube.Client.Run()` is
    	// used to start all informers at once.
    	// However, in some cases we need to run individual informers directly.
    	// This function should only be called once. It does not wait for the informer to become ready nor does it block,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top