Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,772 for startm (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_nm.go

    		} else {
    			high = mid
    		}
    	}
    
    	// Address is between a.m[low] and a.m[high]. Pick low, as it represents
    	// [low, high). For data symbols, we use a strict check that the address is in
    	// the [start, start + size) range of a.m[low].
    	if a.m[low].isData() && addr >= (a.m[low].address+a.m[low].size) {
    		return nil, nil
    	}
    	return []plugin.Frame{{Func: a.m[low].name}}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. pkg/envoy/agent_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	start := func(_ <-chan error) error {
    		return nil
    	}
    	cleanup := func() {
    		cancel()
    	}
    	a := NewAgent(TestProxy{run: start, cleanup: cleanup}, 0, 0, "", 0, 0, 0, true)
    	go func() { a.Run(ctx) }()
    	<-ctx.Done()
    }
    
    func TestActiveConnections(t *testing.T) {
    	cases := []struct {
    		name     string
    		stats    string
    		expected int
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/intervals.go

    		}
    		if i == 0 {
    			continue
    		}
    		// check for badly ordered starts
    		pst := is[i-1].st
    		pen := is[i-1].en
    		if pst >= st {
    			return fmt.Errorf("range start not ordered %d:%d less than prev %d:%d", st, en,
    				pst, pen)
    		}
    		// check end of last range against start of this range
    		if pen > st {
    			return fmt.Errorf("bad range elem %d:%d overlaps prev %d:%d", st, en,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/net/sendfile_unix_alt.go

    	}
    
    	if remain == 0 {
    		fi, err := f.Stat()
    		if err != nil {
    			return 0, err, false
    		}
    
    		remain = fi.Size()
    	}
    
    	// The other quirk with Darwin/FreeBSD/DragonFly/Solaris's sendfile
    	// implementation is that it doesn't use the current position
    	// of the file -- if you pass it offset 0, it starts from
    	// offset 0. There's no way to tell it "start from current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager_windows.go

    			cm.capacity[rName] = rCap
    		}
    	}
    
    	ctx := context.Background()
    	containerMap, containerRunningSet := buildContainerMapAndRunningSetFromRuntime(ctx, runtimeService)
    
    	// Starts device manager.
    	if err := cm.deviceManager.Start(devicemanager.ActivePodsFunc(activePods), sourcesReady, containerMap, containerRunningSet); err != nil {
    		return err
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.438932Z	info	sds	SDS gRPC server for workload UDS starts, listening on "./etc/istio/proxy/SDS"
    
    2020-06-29T23:37:27.438952Z	info	sds	Start SDS grpc server
    2020-06-29T23:37:27.439456Z	info	sds	SDS gRPC server for ingress gateway controller starts, listening on "/var/run/ingress_gateway/sds"
    
    2020-06-29T23:37:27.439555Z	info	sds	Start SDS grpc server for ingress gateway proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  10. 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)
Back to top