Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for below (0.19 sec)

  1. pkg/workloadapi/workload.proto

      Mode mode = 2;
    }
    
    // Workload represents a workload - an endpoint (or collection behind a hostname).
    // The xds primary key is "uid" as defined on the workload below.
    // Secondary (alias) keys are the unique `network/IP` pairs that the workload can be reached at.
    message Workload {
      // UID represents a globally unique opaque identifier for this workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	go doc [<pkg>.]<sym>[.<methodOrField>]
    //	go doc [<pkg>.][<sym>.]<methodOrField>
    //
    // The first item in this list matched by the argument is the one whose documentation
    // is printed. (See the examples below.) However, if the argument starts with a capital
    // letter it is assumed to identify a symbol or method in the current directory.
    //
    // For packages, the order of scanning is determined lexically in breadth-first order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    	// words, if y was a defined type, it is still a defined type
    	// (relevant for the logic below).
    	switch px, py := u.asBoundTypeParam(x), u.asBoundTypeParam(y); {
    	case px != nil && py != nil:
    		// both x and y are type parameters
    		if u.join(px, py) {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/unify.go

    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    	// words, if y was a defined type, it is still a defined type
    	// (relevant for the logic below).
    	switch px, py := u.asBoundTypeParam(x), u.asBoundTypeParam(y); {
    	case px != nil && py != nil:
    		// both x and y are type parameters
    		if u.join(px, py) {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. CREDITS

    License, supplemented by the additional permissions listed below.
    
      0. Additional Definitions.
    
      As used herein, "this License" refers to version 3 of the GNU Lesser
    General Public License, and the "GNU GPL" refers to version 3 of the GNU
    General Public License.
    
      "The Library" refers to a covered work governed by this License,
    other than an Application or a Combined Work as defined below.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  6. pilot/pkg/model/endpointshards.go

    // individual shards incrementally. The shards are aggregated and split into
    // clusters when a push for the specific cluster is needed.
    type EndpointShards struct {
    	// mutex protecting below map.
    	sync.RWMutex
    
    	// Shards is used to track the shards. EDS updates are grouped by shard.
    	// Current implementation uses the registry name as key - in multicluster this is the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		Name:        "envoy.formatter.cel",
    		TypedConfig: protoconv.MessageToAny(&celformatter.Cel{}),
    	}
    )
    
    // configureFromProviderConfigHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    // STOP. DO NOT UPDATE THIS WITHOUT UPDATING telemetryAccessLog.
    const telemetryAccessLogHandled = 14
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// beta: v1.10
    	// GA: v1.26
    	//
    	// Alternative container-level CPU affinity policies.
    	CPUManager featuregate.Feature = "CPUManager"
    
    	// owner: @fromanirh
    	// alpha: v1.23
    	// beta: see below.
    	//
    	// Allow fine-tuning of cpumanager policies, experimental, alpha-quality options
    	// Per https://groups.google.com/g/kubernetes-sig-architecture/c/Nxsc7pfe5rw/m/vF2djJh0BAAJ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    //	     13c: e8 00 00 00 00               	callq	0x141 <pow+0x141>
    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. cmd/batch-expire.go

    //   apiVersion: v1
    //   bucket: mybucket # Bucket where this batch job will expire matching objects from
    //   prefix: myprefix # (Optional) Prefix under which this job will expire objects matching the rules below.
    //   rules:
    //     - type: object  # regular objects with zero or more older versions
    //       name: NAME # match object names that satisfy the wildcard expression.
    //       olderThan: 70h # match objects older than this value
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top