Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 228 for paused (0.1 sec)

  1. src/crypto/tls/key_schedule.go

    		// tree rooted in this function is quite painful. The labels are fixed
    		// size, and the context is either a fixed-length computed hash, or
    		// parsed from a field which has the same length limitation. As such, an
    		// error here is likely to only be caused during development.
    		//
    		// NOTE: another reasonable approach here might be to return a
    		// randomized slice if we encounter an error, which would break the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. cmd/admin-server-info.go

    		// it with quantiles summarizing the distribution of pause time.
    		// For example, if len(stats.PauseQuantiles) is 5, it will be
    		// filled with the minimum, 25%, 50%, 75%, and maximum pause times.
    		PauseQuantiles: make([]time.Duration, 5),
    	}
    	debug.ReadGCStats(&gcStats)
    	// Truncate GC stats to max 5 entries.
    	if len(gcStats.PauseEnd) > 5 {
    		gcStats.PauseEnd = gcStats.PauseEnd[len(gcStats.PauseEnd)-5:]
    	}
    	if len(gcStats.Pause) > 5 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. build/pause/Makefile

    # NOTE(claudiub): The Windows pause image also requires the wincat binary we're compiling for the
    # port-forwarding scenarios. If it's no longer necessary, it can be removed.
    # For more information, see: https://github.com/kubernetes/kubernetes/pull/91452
    BIN.linux = pause
    BIN.windows = pause wincat
    BIN := ${BIN.${OS}}
    SRCS.linux = linux/pause.c
    SRCS.windows = windows/pause.c
    SRCS := ${SRCS.${OS}}
    
    EXTENSION.linux =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/net/63116.md

    The [DNSError] type now wraps errors caused by timeouts or cancellation.
    For example, `errors.Is(someDNSErr, context.DeadlineExceedeed)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 13:37:36 UTC 2024
    - 198 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/init_mlir.cc

    The command line parsing is split between the two flag parsing libraries used by
    TensorFlow and LLVM:
      * Flags before the first '--' are parsed by tensorflow::InitMain while those
        post are parsed by LLVM's command line parser.
      * If there is no separator, then no flags are parsed by InitMain and only
        LLVM command line parser used.e
    The above help options reported are for LLVM's parser, run with `--help --` for
    TensorFlow's help.
    )");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. hack/testdata/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      labels:
        name: test-pod-label
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 172 bytes
    - Viewed (0)
  7. hack/testdata/prune/a.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: a
      labels:
        prune-group: "true"
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 164 bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/NonGradleCause.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.exceptions;
    
    /**
     * An exception that is not caused by a Gradle specific problem. e.g. a problem caused by a compilation error.
     * This serves as a marker interface.
     */
    public interface NonGradleCause {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 851 bytes
    - Viewed (0)
  9. hack/testdata/pod-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: test-pod
      labels:
        name: test-pod-applied
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  10. hack/testdata/pod-with-precision.json

      "kind": "Pod",
      "metadata": {
        "name": "pod-with-precision"
      },
      "spec": {
        "activeDeadlineSeconds": 2147483647,
        "containers": [
          {
            "name": "kubernetes-pause",
            "image": "registry.k8s.io/pause:3.10"
          }
        ],
        "restartPolicy": "Never",
        "securityContext": {
          "supplementalGroups": [
            0,
            1000030003,
            2147483647
          ]
        }
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 428 bytes
    - Viewed (0)
Back to top