Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for then (0.18 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// the specified object matches some installed volume populator or dynamic
    	// provisioner.
    	// This field will replace the functionality of the dataSource field and as such
    	// if both fields are non-empty, they must have the same value. For backwards
    	// compatibility, when namespace isn't specified in dataSourceRef,
    	// both fields (dataSource and dataSourceRef) will be set to the same
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    						},
    					},
    					"selector": {
    						SchemaProps: spec.SchemaProps{
    							Description: "selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.",
    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // be aligned/padded for diagonals that are shorter than max_diag_len. The
        // format is "{super}_{sub}", with {super} the superdiagonal alignment and
        // {sub} the subdiagonal alignment. "LEFT" means rows will be padded to the
        // left, "RIGHT" means rows will be padded ot the right.  The default is
        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	}
    }
    
    // zeroResults zeros the return values at the start of the function.
    // We need to do this very early in the function.  Defer might stop a
    // panic and show the return values as they exist at the time of
    // panic.  For precise stacks, the garbage collector assumes results
    // are always live, so we need to zero them before any allocations,
    // even allocations to move params/results to the heap.
    func (s *state) zeroResults() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. doc/go_spec.html

    distinct arrays always represent distinct storage.
    </p>
    <p>
    The array underlying a slice may extend past the end of the slice.
    The <i>capacity</i> is a measure of that extent: it is the sum of
    the length of the slice and the length of the array beyond the slice;
    a slice of length up to that capacity can be created by
    <a href="#Slice_expressions"><i>slicing</i></a> a new one from the original slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	Type http2FrameType
    
    	// Flags are the 1 byte of 8 potential bit flags per frame.
    	// They are specific to the frame type.
    	Flags http2Flags
    
    	// Length is the length of the frame, not including the 9 byte header.
    	// The maximum size is one byte less than 16MB (uint24), but only
    	// frames up to 16KB are allowed without peer agreement.
    	Length uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    s` that has `cluster-admin` `ClusterRole` access. The User in `super-admin.conf` is now bound to the `system:masters` built-in super-powers / break-glass Group that can bypass RBAC. Before this change, the default `admin.conf` was bound to `system:masters` Group, which was undesired. Executing `kubeadm init phase kubeconfig all` or just `kubeadm init` will now generate the new `super-admin.conf` file. The cluster admin can then decide to keep the file present on a node host or move it to a safe location....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    // validatePathNoBacksteps makes sure the targetPath does not have any `..` path elements when split
    //
    // This assumes the OS of the apiserver and the nodes are the same. The same check should be done
    // on the node to ensure there are no backsteps.
    func validatePathNoBacksteps(targetPath string, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    			destPort: 80,
    
    			// The short-circuit rule is supposed to make this behave the same
    			// way it would if the packet actually went out to the LB and then
    			// came back into the cluster. So it gets routed to all endpoints,
    			// not just local ones. In reality, if the packet actually left
    			// the cluster, it would have to get masqueraded, but since we can
    			// avoid doing that in the short-circuit case, and not masquerading
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Sometimes, the scheduler incorrectly placed a pod in the "unschedulable" queue instead of the "backoff" queue. This happened when some plugin previously declared the pod as "unschedulable" and then in a later attempt encounters some other error. Scheduling of that pod then got delayed by up to five minutes, after which periodic flushing moved the pod back into the "active" queue. ([#120334](https://github.com/kubernetes/kubernetes/pull/120334),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top