Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Visiting (0.41 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		} else {
    			writebyte(uint8(offset))
    			writebyte(uint8(sz))
    		}
    		n++
    	}
    
    	// Visit t recursively and write it out.
    	// Returns whether to continue visiting.
    	var visitType func(baseOffset int64, t *types.Type, depth int) bool
    	visitType = func(baseOffset int64, t *types.Type, depth int) bool {
    		if n >= rtabi.TraceArgsLimit {
    			writebyte(rtabi.TraceArgsDotdotdot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                    implementations. Some examples include request or
                                    response modification, implementing authentication
                                    strategies, rate-limiting, and traffic shaping. API
                                    guarantee/conformance is defined based on the type
                                    of the filter.
                                  properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Alpha support for field selectors on custom resources has been added. With the `CustomResourceFieldSelectors` feature gate enabled, the CustomResourceDefinition API now allows specifying `selectableFields`. Listing a field there enables filtering custom resources for that CustomResourceDefinition in list or watch requests. ([#122717](https://github.com/kubernetes/kubernetes/pull/122717), [@jpbetz](https://github.com/jpbetz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    When that form is used, the variable is declared at the end of the
    TypeSwitchCase in the <a href="#Blocks">implicit block</a> of each clause.
    In clauses with a case listing exactly one type, the variable
    has that type; otherwise, the variable has the type of the expression
    in the TypeSwitchGuard.
    </p>
    
    <p>
    Instead of a type, a case may use the predeclared identifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				},
    				Status: apiextensions.CustomResourceDefinitionStatus{StoredVersions: []string{"version"}},
    			},
    			errors: nil,
    		},
    		{
    			name: "reject nullable items in list of type set if not pre-exisiting",
    			old: &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com", ResourceVersion: "1"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    "group.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Kubelet: security of dynamic resource allocation was enhanced by limiting node access to those objects that are needed on the node. ([#116254](https://github.com/kubernetes/kubernetes/pull/116254), [@pohly](https://github.com/pohly)) [SIG Auth and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    // Each dataBuffer is used to read DATA frames on a single stream.
    // The buffer is divided into chunks so the server can limit the
    // total memory used by a single connection without limiting the
    // request body size on any single stream.
    type http2dataBuffer struct {
    	chunks   [][]byte
    	r        int   // next byte to read is chunks[0][r]
    	w        int   // next byte to write is chunks[len(chunks)-1][w]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
Back to top