Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Single (0.43 sec)

  1. doc/go_spec.html

    an integer value identifying a Unicode code point.
    A rune literal is expressed as one or more characters enclosed in single quotes,
    as in <code>'x'</code> or <code>'\n'</code>.
    Within the quotes, any character may appear except newline and unescaped single
    quote. A single quoted character represents the Unicode value
    of the character itself,
    while multi-character sequences beginning with a backslash encode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    			t.Helper()
    			if got := len(after.Spec.IPFamilies); got != n {
    				t.Errorf("wrong number of ipFamilies: expected %d, got %d", n, got)
    			}
    		}
    	}
    
    	// Single-stack cases as control.
    	testCasesV4 := []cudTestCase{{
    		name: "single-single",
    		line: line(),
    		create: svcTestCase{
    			svc: svctest.MakeService("foo", svctest.SetTypeClusterIP,
    				svctest.SetIPFamilyPolicy(api.IPFamilyPolicySingleStack)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// Service. If there is no value provided, then this Service will be considered
    	// SingleStack (single IPFamily). Services can be SingleStack (single IPFamily),
    	// PreferDualStack (two dual-stack IPFamilies on dual-stack clusters or single
    	// IPFamily on single-stack clusters), or RequireDualStack (two dual-stack IPFamilies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there is no value provided, then this field will be set to SingleStack. Services can be \"SingleStack\" (a single IP family), \"PreferDualStack\" (two IP families on dual-stack configured clusters or a single IP family on single-stack clusters), or \"RequireDualStack\" (two IP families on dual-stack configured clusters, otherwise fail). The ipFamilies and clusterIPs fields depend on the value of this field. This field...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.batch.v1.CronJob": {
            "description": "CronJob represents the configuration of a single cron job.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// this Service. If there is no value provided, then this field will be set
    	// to SingleStack. Services can be "SingleStack" (a single IP family),
    	// "PreferDualStack" (two IP families on dual-stack configured clusters or
    	// a single IP family on single-stack clusters), or "RequireDualStack"
    	// (two IP families on dual-stack configured clusters, otherwise fail). The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // this Service. If there is no value provided, then this field will be set
      // to SingleStack. Services can be "SingleStack" (a single IP family),
      // "PreferDualStack" (two IP families on dual-stack configured clusters or
      // a single IP family on single-stack clusters), or "RequireDualStack"
      // (two IP families on dual-stack configured clusters, otherwise fail). The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. prow/config/calico.yaml

                      blocks, as well as any cluster IPs within them.
                    items:
                      description: ServiceClusterIPBlock represents a single allowed ClusterIP
                        CIDR block.
                      properties:
                        cidr:
                          type: string
                      type: object
                    type: array
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	}
    }
    
    // dataBuffer is an io.ReadWriter backed by a list of data chunks.
    // Each dataBuffer is used to read DATA frames on a single stream.
    // The buffer is divided into chunks so the server can limit the
    // total memory used by a single connection without limiting the
    // request body size on any single stream.
    type http2dataBuffer struct {
    	chunks   [][]byte
    	r        int   // next byte to read is chunks[0][r]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      using Shape = llvm::SmallVector<int64_t, 4>;
    
      // Parse the "k" parameter. MatrixDiagPartV3 allows to specify the diagonal(s)
      // with k. This can be either a single value (for a single diagonal) or a
      // tuple of two values (starting and ending diagonal, for a band).
      LogicalResult ExtractK(TF::MatrixDiagPartV3Op op, int64_t (*k)[2]) const {
        DenseIntElementsAttr kattr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top