Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for indices (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/malloc.go

    	// all 0 or all 1 are "non-canonical" and invalid. Because of
    	// these "negative" addresses, we offset addresses by 1<<47
    	// (arenaBaseOffset) on amd64 before computing indexes into
    	// the heap arenas index. In 2017, amd64 hardware added
    	// support for 57 bit addresses; however, currently only Linux
    	// supports this extension and the kernel will never choose an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            setupBuildWithEachDependencyType()
            taskTypeLogsInputFileCollectionContent()
            buildFile << """
                task resolve(type: ShowFilesTask) {
                    inFiles.from(configurations.implementation)
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
            configurationCacheRun(":resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    }
    
    // Deprecated: Use WorkloadType.Descriptor instead.
    func (WorkloadType) EnumDescriptor() ([]byte, []int) {
    	return file_workloadapi_workload_proto_rawDescGZIP(), []int{1}
    }
    
    // TunnelProtocol indicates the tunneling protocol for requests.
    type TunnelProtocol int32
    
    const (
    	// NONE means requests should be forwarded as-is, without tunneling.
    	TunnelProtocol_NONE TunnelProtocol = 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    // Today, this is just Gateway and Mesh.
    type parentInfo struct {
    	// InternalName refers to the internal name we can reference it by. For example, "mesh" or "my-ns/my-gateway"
    	InternalName string
    	// AllowedKinds indicates which kinds can be admitted by this parent
    	AllowedKinds []k8s.RouteGroupKind
    	// Hostnames is the hostnames that must be match to reference to the parent. For gateway this is listener hostname
    	// Format is ns/hostname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top