Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for indices (0.12 sec)

  1. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// means "retaining all old ReplicaSets".
    	// +optional
    	RevisionHistoryLimit *int32 `json:"revisionHistoryLimit,omitempty" protobuf:"varint,6,opt,name=revisionHistoryLimit"`
    
    	// Indicates that the deployment is paused and will not be processed by the
    	// deployment controller.
    	// +optional
    	Paused bool `json:"paused,omitempty" protobuf:"varint,7,opt,name=paused"`
    
    	// DEPRECATED.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // src, dst, and size must be pointer-aligned.
    // The range [dst, dst+size) must lie within a single object.
    // It does not perform the actual writes.
    //
    // As a special case, src == 0 indicates that this is being used for a
    // memclr. bulkBarrierPreWrite will pass 0 for the src of each write
    // barrier.
    //
    // Callers should call bulkBarrierPreWrite immediately before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    func (configgen *ConfigGeneratorImpl) buildWaypointListeners(builder *ListenerBuilder) *ListenerBuilder {
    	builder.inboundListeners = builder.buildWaypointInbound()
    	return builder
    }
    
    // if enableFlag is "1" indicates that AcceptHttp_10 is enabled.
    func enableHTTP10(enableFlag string) bool {
    	return enableFlag == "1"
    }
    
    type listenerBinding struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | `@link:{javadocPath}/org/gradle/api/tasks/Console.html[Console]`
    | Any type
    | Indicates that the property is neither an input nor an output. It simply affects the console output of the task in some way, such as increasing or decreasing the verbosity of the task.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/Internal.html[Internal]`
    | Any type
    | Indicates that the property is used internally but is neither an input nor an output.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // and be subject to the failure policy.
      // Default to `['v1beta1']`.
      // +optional
      // +listType=atomic
      repeated string admissionReviewVersions = 8;
    
      // reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
      // Allowed values are "Never" and "IfNeeded".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    // | Current         | true/false          | true/false        |
    // +-----------------+---------------------+-------------------+
    // where:
    // - false indicates the value of the param was set to "false" by a test case
    // - true  indicates the value of the param was set to "true" by a test case
    func RunWatchSemantics(ctx context.Context, t *testing.T, store storage.Interface) {
    	trueVal, falseVal := true, false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // include any versions known to the API Server, calls to the webhook will fail
      // and be subject to the failure policy.
      // +listType=atomic
      repeated string admissionReviewVersions = 8;
    
      // reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
      // Allowed values are "Never" and "IfNeeded".
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    					}
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    // servicesExportedToNamespace returns the list of services that are visible to a namespace.
    // namespace "" indicates all namespaces
    func (ps *PushContext) servicesExportedToNamespace(ns string) []*Service {
    	var out []*Service
    
    	// First add private services and explicitly exportedTo services
    	if ns == NamespaceAll {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	SyncPod PodWorkerState = iota
    	// TerminatingPod is when the pod is no longer being set up, but some
    	// containers may be running and are being torn down.
    	TerminatingPod
    	// TerminatedPod indicates the pod is stopped, can have no more running
    	// containers, and any foreground cleanup can be executed.
    	TerminatedPod
    )
    
    func (state PodWorkerState) String() string {
    	switch state {
    	case SyncPod:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    	// optimize for performance over debuggability.
    	largeClusterMode bool
    
    	// localhostNodePorts indicates whether we allow NodePort services to be accessed
    	// via localhost.
    	localhostNodePorts bool
    
    	// conntrackTCPLiberal indicates whether the system sets the kernel nf_conntrack_tcp_be_liberal
    	conntrackTCPLiberal bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top