Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 603 for spent (0.04 sec)

  1. pkg/kubelet/metrics/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"reason"},
    	)
    
    	// ImagePullDuration is a Histogram that tracks the duration (in seconds) it takes for an image to be pulled,
    	// including the time spent in the waiting queue of image puller.
    	// The metric is broken down by bucketed image size.
    	ImagePullDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem:      KubeletSubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                .charAt(0);
        if (overWaitNanosFirstDigit < '4') {
          overWaitNanosFirstDigit = '9';
        }
        String nanosRegex = "[4-" + overWaitNanosFirstDigit + "][0-9]+";
        assertWithMessage(
                "Spent " + thread.timeSpentBlocked + " ns blocked; slept for " + toWaitMillis + " ms")
            .that(thread.exception)
            .hasMessageThat()
            .matches(
                "Waited 2 seconds \\(plus "
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. pkg/kube/client.go

    // library. However, that library will poll with 100ms fixed interval. Often the cache syncs in a few
    // ms, but we are delayed a full 100ms. This is especially apparent in tests, which previously spent
    // most of their time just in the 100ms wait interval.
    //
    // To optimize this, this function performs exponential backoff. This is generally safe because
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. src/os/exec/exec.go

    	// support shutdown signals but are expected to always finish quickly.
    	//
    	// Cancel will not be called if Start returns a non-nil error.
    	Cancel func() error
    
    	// If WaitDelay is non-zero, it bounds the time spent waiting on two sources
    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. src/encoding/gob/doc.go

    Strings and slices of bytes are sent as an unsigned count followed by that many
    uninterpreted bytes of the value.
    
    All other slices and arrays are sent as an unsigned count followed by that many
    elements using the standard gob encoding for their type, recursively.
    
    Maps are sent as an unsigned count followed by that many key, element
    pairs. Empty but non-nil maps are sent, so if the receiver has not allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    		return errors.New("tls: server sent an unnecessary HelloRetryRequest message")
    	}
    
    	if hs.serverHello.cookie != nil {
    		hello.cookie = hs.serverHello.cookie
    	}
    
    	if hs.serverHello.serverShare.group != 0 {
    		c.sendAlert(alertDecodeError)
    		return errors.New("tls: received malformed key_share extension")
    	}
    
    	// If the server sent a key_share extension selecting a group, ensure it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        client.webSocket!!.finishReader()
        assertThat(client.closed).isTrue()
        client.listener.assertFailure(
          ProtocolException::class.java,
          "Server-sent frames must not be masked.",
        )
        server.listener.assertClosing(1000, "Hello")
        server.listener.assertExhausted() // Client should not have sent second close.
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator_test.go

    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDOUT.
    	if !bytes.Equal(stdoutBytes, randomData) {
    		t.Errorf("unexpected data received: %d sent: %d", len(stdoutBytes), len(randomData))
    	}
    	stderrBytes, err := io.ReadAll(bytes.NewReader(stderr.Bytes()))
    	if err != nil {
    		t.Errorf("error reading the stream: %v", err)
    		return
    	}
    	// Check the random data sent on STDIN was the same returned on STDERR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// It's not guaranteed Audit-Id http header is sent for all requests. When kube-apiserver didn't
    	// audit the events according to the audit policy, no Audit-ID is returned. Also, for request to
    	// pods/exec, pods/attach, pods/proxy, kube-apiserver works like a proxy and redirect the request
    	// to kubelet node, users will only get http headers sent from kubelet node, so no Audit-ID is
    	// sent when users run command like "kubectl exec" or "kubectl attach".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/ztunnelserver.go

    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top