Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,259 for startm (0.11 sec)

  1. src/cmd/trace/gstate.go

    }
    
    // start indicates that a goroutine has started running on a proc.
    func (gs *gState[R]) start(ts trace.Time, resource R, ctx *traceContext) {
    	// Set the time for all the active ranges.
    	for name := range gs.activeRanges {
    		gs.activeRanges[name] = activeRange{ts, trace.NoStack}
    	}
    
    	if gs.startCause.name != "" {
    		// It has a start cause. Emit a flow event.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    		}
    	}()
    
    	wg1.Wait()
    	time.Sleep(blackOut)
    	// Start KMS Plugin
    	_ = mock.NewBase64Plugin(t, endpoint.path)
    	t.Log("Restarted KMS Plugin")
    
    	wg2.Wait()
    
    	if encryptErr != nil {
    		t.Error(encryptErr)
    	}
    }
    
    // Normal encryption and decryption operation.
    func TestGRPCService(t *testing.T) {
    	t.Parallel()
    	// Start a test gRPC server.
    	endpoint := newEndpoint()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. 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)
  6. src/index/suffixarray/sais2.go

    		}
    	}
    
    	// We recorded the LMS-substring starts but really want the ends.
    	// Luckily, with two differences, the start indexes and the end indexes are the same.
    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

    /**
     * Receives the result of dependency graph resolution, as a series of events.
     *
     * Implementations should make copies of whatever state they need to retain.
     */
    public interface DependencyGraphVisitor {
        /**
         * Starts traversal of the graph.
         */
        default void start(RootGraphNode root) {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		tracker.ObservedPodOnWatch(podInitializing, frozenTime)
    
    		// image pulling started at 10s and the last one finished at 30s
    		// first image starts pulling at 10s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 10))
    		tracker.RecordImageStartedPulling(podInitializing.UID)
    		// second image starts pulling at 11s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 11))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top