Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,367 for startm (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        File getDirectory();
    
        String getCommand();
    
        List<String> getArguments();
    
        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/ConcurrentSpec.groovy

            executor.start()
            try {
                executor.execute(action)
            } finally {
                executor.stop(timeout)
            }
        }
    
        /**
         * Starts a test thread that will run the given action. The action may define instants for later querying.
         */
        void start(Runnable action) {
            executor.execute(action)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    	for start := end - 1; start >= 0; start-- {
    		if l[start] == sep {
    			i, err := strconv.Atoi(l[start+1 : end])
    			if err != nil {
    				return 0, 0, fmt.Errorf("couldn't parse %q: %v", what, err)
    			}
    			if i < 0 {
    				return 0, 0, fmt.Errorf("negative values are not allowed for %s, found %d", what, i)
    			}
    			return i, start, nil
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v2/kms_plugin_mock.go

    	return s.lastEncryptRequest.Plaintext
    }
    
    // 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: Fri Jul 21 19:25:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    		path:                sockDir,
    		fs:                  &utilfs.DefaultFs{},
    		desiredStateOfWorld: desiredStateOfWorld,
    	}
    }
    
    // Start watches for the creation and deletion of plugin sockets at the path
    func (w *Watcher) Start(stopCh <-chan struct{}) error {
    	klog.V(2).InfoS("Plugin Watcher Start", "path", w.path)
    
    	// Creating the directory to be watched if it doesn't exist yet,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top