Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 389 for live1 (0.17 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:monitoring
      rules:
      - nonResourceURLs:
        - /healthz
        - /healthz/*
        - /livez
        - /livez/*
        - /metrics
        - /metrics/slis
        - /readyz
        - /readyz/*
        verbs:
        - get
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. samples/security/spire/spire-quickstart.yaml

            # CSI driver and SPIRE agent
            - name: spire-agent-socket-dir
              emptyDir: {}
            # This volume is where the socket for kubelet->driver communication lives
            - name: spiffe-csi-socket-dir
              hostPath:
                path: /var/lib/kubelet/plugins/csi.spiffe.io
                type: DirectoryOrCreate
            # This volume is where the SPIFFE CSI driver mounts volumes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook_test.go

    			probers: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    				`"/app-health/foo/livez":{"httpGet":{"path":"/","port":8000,"scheme":"HTTP"}}}`,
    			want: []corev1.EnvVar{{
    				Name: status.KubeAppProberEnvName,
    				Value: `{"/app-health/bar/livez":{"httpGet":{"path":"/","port":9000,"scheme":"HTTP"}},` +
    					`"/app-health/foo/livez":{"httpGet":{"path":"/","port":8000,"scheme":"HTTP"}}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("get").URLs(
    					"/livez", "/readyz", "/healthz",
    					"/version", "/version/",
    					"/openapi", "/openapi/*",
    					"/api", "/api/*",
    					"/apis", "/apis/*",
    				).RuleOrDie(),
    			},
    		},
    		{
    			// a role which provides minimal read access to the monitoring endpoints
    			// (i.e. /metrics, /livez/*, /readyz/*, /healthz/*, /livez, /readyz, /healthz)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. docs/em/docs/contributing.md

    !!! tip
        👑 ("🛂") 🇪🇸 🇪🇸, 🔎 `docs/en/`.
    
    🔜 🏃 🖖 💽 🩺 🇪🇸:
    
    <div class="termy">
    
    ```console
    // Use the command "live" and pass the language code as a CLI argument
    $ python ./scripts/docs.py live es
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    <span style="color: green;">[INFO]</span> Start watching changes
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         * - Anything else is treated as a failure.
         *
         * The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.
         *
         * The returned file collection maintains the iteration order of the supplied paths.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/runningsds_golden.json

        "locality": {
          "region": "regionA"
          ,
          "zone": "zoneB"
          ,
          "sub_zone": "sub_zoneC"
        },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer_test.go

    				if n > 12 {
    					// We're way over the memory limit, so we want to make sure our goal is set
    					// as low as it possibly can be.
    					if goal, live := c[n-1].heapGoal, c[n-1].heapLive; goal != live {
    						t.Errorf("heap goal is not equal to live heap: %d != %d", goal, live)
    					}
    				}
    				if n >= 25 {
    					// Due to memory pressure, we should scale to 100% GC CPU utilization.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         * - Anything else is treated as a failure.
         *
         * The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.
         *
         * The returned file collection maintains the iteration order of the supplied paths.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/Graph.java

       *
       * @since 29.0
       */
      @Override
      ElementOrder<N> incidentEdgeOrder();
    
      //
      // Element-level accessors
      //
    
      /**
       * Returns a live view of the nodes which have an incident edge in common with {@code node} in
       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top