Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for converge (0.22 sec)

  1. doc/go_spec.html

    <pre>
    *Point(p)        // same as *(Point(p))
    (*Point)(p)      // p is converted to *Point
    &lt;-chan int(c)    // same as &lt;-(chan int(c))
    (&lt;-chan int)(c)  // c is converted to &lt;-chan int
    func()(x)        // function signature func() x
    (func())(x)      // x is converted to func()
    (func() int)(x)  // x is converted to func() int
    func() int(x)    // x is converted to func() int (unambiguous)
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			// simulate the recursive validation calls
    			conversionCount := 0
    			converter := func(schema *apiextensions.JSONSchemaProps, isRoot bool) (*CELTypeInfo, error) {
    				conversionCount++
    				return defaultConverter(schema, isRoot)
    			}
    			celContext := RootCELContext(tt.schema)
    			celContext.converter = converter
    			opts := validationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	store.Aux = t
    	s.vars[memVar] = store
    }
    
    // stmtList converts the statement list n to SSA and adds it to s.
    func (s *state) stmtList(l ir.Nodes) {
    	for _, n := range l {
    		s.stmt(n)
    	}
    }
    
    // stmt converts the statement n to SSA and adds it to s.
    func (s *state) stmt(n ir.Node) {
    	s.pushLine(n.Pos())
    	defer s.popLine()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    // connError represents an HTTP/2 ConnectionError error code, along
    // with a string (for debugging) explaining why.
    //
    // Errors of this type are only returned by the frame parser functions
    // and converted into ConnectionError(Code), after stashing away
    // the Reason into the Framer's errDetail field, accessible via
    // the (*Framer).ErrorDetail method.
    type http2connError struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

        * [StorageOS](http://www.storageos.com) can be used as a storage provider for Kubernetes.  With StorageOS, capacity from local or attached storage is pooled across the cluster, providing converged infrastructure for cloud-native applications.
    * CRI has been moved to package `pkg/kubelet/apis/cri/v1alpha1/runtime`. ([#47113](https://github.com/kubernetes/kubernetes/pull/47113), [@feiskyer](https://github.com/feiskyer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Default is false.
    	// +optional
    	TTY bool `json:"tty,omitempty" protobuf:"varint,18,opt,name=tty"`
    }
    
    // EphemeralContainerCommon converts to Container. All fields must be kept in sync between
    // these two types.
    var _ = Container(EphemeralContainerCommon{})
    
    // An EphemeralContainer is a temporary container that you may add to an existing Pod for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top