Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,367 for startm (0.12 sec)

  1. src/net/http/pprof/pprof_test.go

    			runtime.Gosched()
    		}
    	}
    }
    
    // mutexHog starts multiple goroutines that runs the given hogger function for the specified duration.
    // The hogger function will be given two mutexes to lock & unlock.
    func mutexHog(duration time.Duration, hogger func(mu1, mu2 *sync.Mutex, start time.Time, dt time.Duration)) {
    	start := time.Now()
    	mu1 := new(sync.Mutex)
    	mu2 := new(sync.Mutex)
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    // TP_ProfilerFns holds the profiler interface function pointers filled by the
    // plug-in.
    typedef struct TP_ProfilerFns {
      size_t struct_size;
    
      void* ext;  // reserved for future use.
      // Starts profiling.
      void (*start)(const TP_Profiler* profiler, TF_Status* status);
      // Stops profiling.
      void (*stop)(const TP_Profiler* profiler, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/process/JavaDebugOptions.java

         * <p>
         * In server mode ({@code server = true}), the process listens for a debugger to connect after the JVM starts up.
         * </p>
         * <p>
         * In client mode ({@code server = false}), the process attempts to connect to an already running debugger.
         * </p>
         */
        @Input
        Property<Boolean> getServer();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 14:16:38 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

      public synchronized void awaitAccessToken(Timeout timeout) throws InterruptedIOException {
        while (session == null) {
          timeout.waitUntilNotified(this);
        }
      }
    
      /** Starts a real time messaging session. */
      public void startRtm() throws IOException {
        String accessToken;
        synchronized (this) {
          accessToken = session.access_token;
        }
    
        RtmSession rtmSession = new RtmSession(slackApi);
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. releasenotes/notes/istioctl-proxy-config-stats.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 21 02:57:05 UTC 2022
    - 181 bytes
    - Viewed (0)
  6. src/html/template/url.go

    	return (c < 0x80) && 0 != (htmlSpaceAndASCIIAlnumBytes[c>>3]&(1<<uint(c&0x7)))
    }
    
    func filterSrcsetElement(s string, left int, right int, b *strings.Builder) {
    	start := left
    	for start < right && isHTMLSpace(s[start]) {
    		start++
    	}
    	end := right
    	for i := start; i < right; i++ {
    		if isHTMLSpace(s[i]) {
    			end = i
    			break
    		}
    	}
    	if url := s[start:end]; isSafeURL(url) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/types.go

    	schedulerframework "k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Manager manages all the Device Plugins running on a node.
    type Manager interface {
    	// Start starts device plugin registration service.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady, initialContainers containermap.ContainerMap, initialContainerRunningSet sets.Set[string]) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. docs/docker/README.md

    ### Starting and Stopping Containers
    
    To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command.
    
    ```sh
    docker start <container_id>
    ```
    
    To stop a running container, you can use the [`docker stop`](https://docs.docker.com/engine/reference/commandline/stop/) command.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/list.go

    )
    
    type List struct {
    	Position
    	Bullet rune
    	Start  int
    	Loose  bool
    	Items  []Block // always *Item
    }
    
    type Item struct {
    	Position
    	Blocks []Block
    	width  int
    }
    
    func (b *List) PrintHTML(buf *bytes.Buffer) {
    	if b.Bullet == '.' || b.Bullet == ')' {
    		buf.WriteString("<ol")
    		if b.Start != 1 {
    			fmt.Fprintf(buf, " start=\"%d\"", b.Start)
    		}
    		buf.WriteString(">\n")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	return c.loadCABundle()
    }
    
    // Run starts the controller and blocks until stopCh is closed.
    func (c *DynamicFileCAContent) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	defer c.queue.ShutDown()
    
    	klog.InfoS("Starting controller", "name", c.name)
    	defer klog.InfoS("Shutting down controller", "name", c.name)
    
    	// doesn't matter what workers say, only start one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top