Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/internal/trace/order.go

    	}
    	oldState := go122ProcStatus2ProcState[status]
    	if s, ok := o.pStates[pid]; ok {
    		if status == go122.ProcSyscallAbandoned && s.status == go122.ProcSyscall {
    			// ProcSyscallAbandoned is a special case of ProcSyscall. It indicates a
    			// potential loss of information, but if we're already in ProcSyscall,
    			// we haven't lost the relevant information. Promote the status and advance.
    			oldState = ProcRunning
    			ev.args[1] = uint64(go122.ProcSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K 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/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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// TTLFunc returns the TTL (time to live) that objects should be persisted
    	// with. The existing parameter is the current TTL or the default for this
    	// operation. The update parameter indicates whether this is an operation
    	// against an existing object.
    	//
    	// Objects that are persisted with a TTL are evicted once the TTL expires.
    	TTLFunc func(obj runtime.Object, existing uint64, update bool) (uint64, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top