Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,667 for Fermat (0.16 sec)

  1. src/archive/tar/common.go

    			wantFormat.mayBe(FormatUSTAR) // PAX implies USTAR allowed too
    		}
    		format.mayOnlyBe(wantFormat) // Set union of formats allowed and format wanted
    	}
    	if format == FormatUnknown {
    		switch h.Format {
    		case FormatUSTAR:
    			err = headerError{"Format specifies USTAR", whyNoUSTAR, whyOnlyPAX, whyOnlyGNU}
    		case FormatPAX:
    			err = headerError{"Format specifies PAX", whyNoPAX, whyOnlyGNU}
    		case FormatGNU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. cmd/erasure-sets.go

    // format, after successful validation.
    //   - i'th position is the set index
    //   - j'th position is the disk index in the current set
    func findDiskIndex(refFormat, format *formatErasureV3) (int, int, error) {
    	if err := formatErasureV3Check(refFormat, format); err != nil {
    		return 0, 0, err
    	}
    
    	if format.Erasure.This == offlineDiskUUID {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    // those of the format. It returns the number of bytes (sic) consumed
    // in the format. All runs of space characters in either input or
    // format behave as a single space. Newlines are special, though:
    // newlines in the format must match those in the input and vice versa.
    // This routine also handles the %% case. If the return value is zero,
    // either format starts with a % (with no following %) or the input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/istio-performance-dashboard.json

              "format": "time_series",
              "hide": true,
              "intervalFactor": 2,
              "legendFormat": "heap alloc",
              "refId": "D"
            },
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
              "expr": "go_memstats_alloc_bytes{app=\"istiod\"}",
              "format": "time_series",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. src/fmt/doc.go

    the format string consumes zero or more spaces in the input
    followed by a single newline or the end of the input. A space
    following a newline in the format string consumes zero or more
    spaces in the input. Otherwise, any run of one or more spaces
    in the format string consumes as many spaces as possible in
    the input. Unless the run of spaces in the format string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. cmd/signature-v4-parser_test.go

    	}
    }
    
    // TestParseCredentialHeader - validates the format validator and extractor for the Credential header in an aws v4 request.
    // A valid format of credential should be of the following format.
    // Credential = accessKey + SlashSeparator+ scope
    // where scope = string.Join([]string{  currTime.Format(yyyymmdd),
    //
    //				globalMinioDefaultRegion,
    //	              	"s3",
    //			        "aws4_request",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

                                std::vector<TfLiteDimensionType>* format,
                                std::vector<int>* b_map, std::vector<int>* b_size) {
      const int dims_count = block_size.size();
      traversal_order->resize(dims_count);
      format->resize(dims_count);
      for (int i = 0; i < dims_count; i++) {
        (*traversal_order)[i] = i;
      }
      for (int i = 0; i < dims_count - 1; i++) {
        (*format)[i] = kTfLiteDimDense;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. pkg/api/service/warnings_test.go

    			},
    		},
    		{
    			name:    "IPv6 non canonical format",
    			service: service([]string{"2001:db8:0:0::2"}),
    			want: []string{
    				`spec.clusterIPs[0]: IPv6 address "2001:db8:0:0::2" is not in RFC 5952 canonical format ("2001:db8::2"), which may cause controller apply-loops`,
    			},
    		},
    		{
    			name:    "Dual Stack IPv4-IPv6 and IPv6 non-canonical format",
    			service: service([]string{"192.12.2.2", "2001:db8:0:0::2"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/schemas_test.go

    			},
    		},
    	}
    	return ts
    }
    
    func arraySchema(arrayType, format string, maxItems *int64) *schema.Structural {
    	return &schema.Structural{
    		Generic: schema.Generic{
    			Type: "array",
    		},
    		Items: &schema.Structural{
    			Generic: schema.Generic{
    				Type: arrayType,
    			},
    			ValueValidation: &schema.ValueValidation{
    				Format: format,
    			},
    		},
    		ValueValidation: &schema.ValueValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/openapi/schemas_test.go

    					},
    				}},
    			}}}
    	return ts
    }
    
    func arraySchema(arrayType, format string, maxItems *int64) *spec.Schema {
    	return &spec.Schema{
    		SchemaProps: spec.SchemaProps{
    			Type: []string{"array"},
    			Items: &spec.SchemaOrArray{Schema: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type:   []string{arrayType},
    					Format: format,
    				}}},
    			MaxItems: maxItems,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:27 UTC 2022
    - 13K bytes
    - Viewed (0)
Back to top