Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for list1 (0.07 sec)

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

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.0
    
    // List holds a list of objects, which may not be known by the server.
    type List metav1.List
    
    // LimitType is a type of object that is limited. It can be Pod, Container, PersistentVolumeClaim or
    // a fully qualified resource name.
    type LimitType string
    
    const (
    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. CHANGELOG/CHANGELOG-1.25.md

    ### Bug or Regression
    
    - Fix list cost estimation in Priority and Fairness for list requests with metadata.name specified. ([#112557](https://github.com/kubernetes/kubernetes/pull/112557), [@marseel](https://github.com/marseel)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - Fixes a 1.30.0 regression in openapi descriptions of imagePullSecrets and hostAliases fields to mark the fields used as keys in those lists as either defaulted or required. ([#124694](https://github.com/kubernetes/kubernetes/pull/124694),...
    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. src/net/http/h2_bundle.go

    func (ws *http2priorityWriteScheduler) addClosedOrIdleNode(list *[]*http2priorityNode, maxSize int, n *http2priorityNode) {
    	if maxSize == 0 {
    		return
    	}
    	if len(*list) == maxSize {
    		// Remove the oldest node, then shift left.
    		ws.removeNode((*list)[0])
    		x := (*list)[1:]
    		copy(*list, x)
    		*list = (*list)[:len(x)]
    	}
    	*list = append(*list, n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	69,  // 186: v1alpha1.IntOrString.strVal:type_name -> google.protobuf.StringValue
    	187, // [187:187] is the sub-list for method output_type
    	187, // [187:187] is the sub-list for method input_type
    	187, // [187:187] is the sub-list for extension type_name
    	187, // [187:187] is the sub-list for extension extendee
    	0,   // [0:187] is the sub-list for field type_name
    }
    
    func init() { file_pkg_apis_istio_v1alpha1_values_types_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </pre>
    
    <p>
    Within a parenthesized <code>const</code> declaration list the
    expression list may be omitted from any but the first ConstSpec.
    Such an empty list is equivalent to the textual substitution of the
    first preceding non-empty expression list and its type if any.
    Omitting the list of expressions is therefore equivalent to
    repeating the previous list.  The number of identifiers must be equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	params = s.f.ABISelf.ABIAnalyze(fn.Type(), true)
    
    	// The backend's stackframe pass prunes away entries from the fn's
    	// Dcl list, including PARAMOUT nodes that correspond to output
    	// params passed in registers. Walk the Dcl list and capture these
    	// nodes to a side list, so that we'll have them available during
    	// DWARF-gen later on. See issue 48573 for more details.
    	var debugInfo ssa.FuncDebug
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Valid .list",
    			fieldPath:       ".list",
    			pathOfFieldPath: path,
    			schema:          &schema,
    		},
    		{
    			name:            "Invalid .list[1]",
    			fieldPath:       ".list[1]",
    			pathOfFieldPath: path,
    			schema:          &schema,
    			errMsg:          "expected single quoted string but got 1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    type iptablesTracer struct {
    	ipt      *iptablestest.FakeIPTables
    	localIPs sets.Set[string]
    	t        *testing.T
    
    	// matches accumulates the list of rules that were matched, for debugging purposes.
    	matches []string
    
    	// outputs accumulates the list of matched terminal rule targets (endpoint
    	// IP:ports, or a special target like "REJECT") and is eventually used to generate
    	// the return value of tracePacket.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top