Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,695 for bstart (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // holds the queue’s virtual start time. While the queue is empty and
    // has no requests executing: the value of its virtual start time
    // variable is ignored and its last virtual finish time is considered
    // to be in the virtual past. When a request arrives to an empty queue
    // with no requests executing, the queue’s virtual start time is set
    // to the current virtual time. The virtual finish time of request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Longs.java

        final long[] array;
        final int start;
        final int end;
    
        LongArrayAsList(long[] array) {
          this(array, 0, array.length);
        }
    
        LongArrayAsList(long[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    	t.Helper()
    
    	if *flagQuick {
    		t.Skip("-quick")
    	}
    
    	start := time.Now()
    
    	cmd := testenv.CleanCmdEnv(testenv.Command(t, exe, name))
    	cmd.Env = append(cmd.Env, env...)
    	if testing.Short() {
    		cmd.Env = append(cmd.Env, "RUNTIME_TEST_SHORT=1")
    	}
    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		t.Logf("%v (%v): ok", cmd, time.Since(start))
    	} else {
    		if _, ok := err.(*exec.ExitError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits.go

    func (b *pallocBits) summarize() pallocSum {
    	var start, most, cur uint
    	const notSetYet = ^uint(0) // sentinel for start value
    	start = notSetYet
    	for i := 0; i < len(b); i++ {
    		x := b[i]
    		if x == 0 {
    			cur += 64
    			continue
    		}
    		t := uint(sys.TrailingZeros64(x))
    		l := uint(sys.LeadingZeros64(x))
    
    		// Finish any region spanning the uint64s
    		cur += t
    		if start == notSetYet {
    			start = cur
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. internal/grid/grid_test.go

    		start := time.Now()
    		resp, err := remoteConn.Request(context.Background(), handlerTest2, []byte(testPayload))
    		t.Log("Roundtrip:", time.Since(start))
    		if len(resp) != 0 {
    			t.Errorf("want nil, got %q", string(resp))
    		}
    		if err != RemoteErr(testPayload) {
    			t.Errorf("want error %v(%T), got %v(%T)", RemoteErr(testPayload), RemoteErr(testPayload), err, err)
    		}
    		t.Log("Roundtrip:", time.Since(start))
    	})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/table.go

    func (b *tableBuilder) parseAlign(delim tableTrimmed, n int) []string {
    	align := make([]string, 0, tableCount(delim))
    	start := 0
    	for i := 0; i < len(delim); i++ {
    		if delim[i] == '|' {
    			align = append(align, tableAlign(string(delim[start:i])))
    			start = i + 1
    		}
    	}
    	align = append(align, tableAlign(string(delim[start:])))
    	return align
    }
    
    func tableAlign(cell string) string {
    	cell = tableTrimSpace(cell)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/bbottema/javasocksproxyserver/TestRecordingSocksServer.java

        }
    
        public synchronized void start(int listenPort) {
            start(listenPort, ServerSocketFactory.getDefault());
        }
    
        public synchronized void start(int listenPort, ServerSocketFactory serverSocketFactory) {
            this.stopping = false;
            new Thread(new ServerProcess(listenPort, serverSocketFactory)).start();
        }
    
        public synchronized void stop() {
            stopping = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    COPY sudoers /etc/sudoers
    
    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/client /usr/local/bin/client
    COPY ${TARGETARCH:-amd64}/server /usr/local/bin/server
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServerFixture.groovy

                server.start()
                for (int i = 0; i < 5; i++) {
                    if (createConnector() && connector.localPort > 0) {
                        return
                    }
                    // Has failed to start for some reason - try again
                    releaseConnector()
                }
                throw new AssertionError((Object) "SocketConnector failed to start.") // cast because of Groovy bug
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Longs.java

        final long[] array;
        final int start;
        final int end;
    
        LongArrayAsList(long[] array) {
          this(array, 0, array.length);
        }
    
        LongArrayAsList(long[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top