Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for okdown (0.2 sec)

  1. doc/go_spec.html

    </li>
    <li>
    	At most one of the type parameters has a known type argument.
    	In this case, the type parameters are <i>joined</i>:
    	they both stand for the same type argument.
    	If neither type parameter has a known type argument yet,
    	a future type argument inferred for one the type parameters
    	is simultaneously inferred for both of them.
    </li>
    <li>
    	Both type parameters have a known type argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Structured Authentication Configuration now supports `DiscoveryURL`. If specified, `discoveryURL` overrides the URL used to fetch discovery information. This is for scenarios where the well-known and jwks endpoints are hosted at a different location than the issuer (such as locally in the cluster).
       ([#123527](https://github.com/kubernetes/kubernetes/pull/123527), [@aramase](https://github.com/aramase))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

        - [Server Binaries](#server-binaries-15)
        - [Node Binaries](#node-binaries-15)
        - [Container Images](#container-images-15)
      - [Changelog since v1.26.0](#changelog-since-v1260)
      - [Known Issues](#known-issues)
        - [The PreEnqueue extension point doesn't work for Pods going to activeQ through backoffQ](#the-preenqueue-extension-point-doesnt-work-for-pods-going-to-activeq-through-backoffq)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// not be updated even if there is a node is assigned to this pod.
    	// match the hostIP field. This list is empty if no IPs have been allocated yet.
    	// +optional
    	HostIPs []HostIP
    
    	// PodIPs holds all of the known IP addresses allocated to the pod. Pods may be assigned AT MOST
    	// one value for each of IPv4 and IPv6.
    	// +optional
    	PodIPs []PodIP
    
    	// Date and time at which the object was acknowledged by the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // If begin and end values are dynamic, we can only support this lowering
        // if strides are a known value of 1.
        DenseIntElementsAttr sparse_strides_attr;
        if (!matchPattern(op.getStrides(), m_Constant(&sparse_strides_attr))) {
          return rewriter.notifyMatchFailure(
              op,
              "requires that strides are known when begin/end values are dynamic");
        }
        SmallVector<int64_t, 4> strides;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    }
    
    // startGracefulShutdown gracefully shuts down a connection. This
    // sends GOAWAY with ErrCodeNo to tell the client we're gracefully
    // shutting down. The connection isn't closed until all current
    // streams are done.
    //
    // startGracefulShutdown returns immediately; it does not wait until
    // the connection has shut down.
    func (sc *http2serverConn) startGracefulShutdown() {
    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. staging/src/k8s.io/api/core/v1/types.go

    	PodController *metav1.OwnerReference `json:"podController,omitempty" protobuf:"bytes,1,opt,name=podController"`
    }
    
    // Describe a container image
    type ContainerImage struct {
    	// Names by which this image is known.
    	// e.g. ["kubernetes.example/hyperkube:v1.0.7", "cloud-vendor.registry.example/cloud-vendor/hyperkube:v1.0.7"]
    	// +optional
    	// +listType=atomic
    	Names []string `json:"names" protobuf:"bytes,1,rep,name=names"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      RFC3339 form and is in UTC.
                    format: date-time
                    nullable: true
                    type: string
                  routes:
                    description: Routes reports routes known to the Calico BGP daemon
                      on the node.
                    properties:
                      routesV4:
                        description: RoutesV4 represents IPv4 routes on the node.
                        items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    ### Other (Cleanup or Flake)
    
    - Reverts the EventedPLEG feature (beta, but disabled by default) back to alpha for a known issue ([#122719](https://github.com/kubernetes/kubernetes/pull/122719), [@pacoxu](https://github.com/pacoxu)) [SIG Node]
    
    ## Dependencies
    
    ### Added
    _Nothing has changed._
    
    ### Changed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) storeType(t *types.Type, left, right *ssa.Value, skip skipMask, leftIsStmt bool) {
    	s.instrument(t, left, instrumentWrite)
    
    	if skip == 0 && (!t.HasPointers() || ssa.IsStackAddr(left)) {
    		// Known to not have write barrier. Store the whole type.
    		s.vars[memVar] = s.newValue3Apos(ssa.OpStore, types.TypeMem, t, left, right, s.mem(), leftIsStmt)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top