Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 239 for Fermat (0.19 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				EnforceNodeAllocatable:                    DefaultNodeAllocatableEnforcement,
    				VolumePluginDir:                           DefaultVolumePluginDir,
    				Logging: logsapi.LoggingConfiguration{
    					Format:         "text",
    					FlushFrequency: logsapi.TimeOrMetaDuration{Duration: metav1.Duration{Duration: 5 * time.Second}, SerializeAsString: true},
    				},
    				EnableSystemLogHandler:        utilpointer.Bool(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	scope := strings.Join([]string{
    		currTime.Format(yyyymmdd),
    		globalMinioDefaultRegion,
    		string(serviceS3),
    		"aws4_request",
    	}, SlashSeparator)
    
    	stringToSign := "AWS4-HMAC-SHA256" + "\n" + currTime.Format(iso8601Format) + "\n"
    	stringToSign += scope + "\n"
    	stringToSign += getSHA256Hash([]byte(canonicalRequest))
    
    	date := sumHMAC([]byte("AWS4"+secretKey), []byte(currTime.Format(yyyymmdd)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

                this.prop = String.format("[%s]", property);
                return this;
            }
    
            public BeanWithDslMethods prop(Object property) {
                this.prop = String.format("<%s>", property);
                return this;
            }
    
            public void prop(int property) {
                this.prop = String.format("<%s>", property);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

                    format: int32
                    maximum: 255
                    minimum: 2
                    type: integer
                  echoInterval:
                    description: Configures the minimal echo receive transmission interval
                      that this system is capable of handling in milliseconds. Defaults
                      to 50ms
                    format: int32
                    maximum: 60000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	for i := 0; i < b.N; i++ {
    		t.Format("Mon Jan  2 15:04:05 2006")
    	}
    }
    
    func BenchmarkFormatRFC3339(b *testing.B) {
    	t := Unix(1265346057, 0)
    	for i := 0; i < b.N; i++ {
    		t.Format("2006-01-02T15:04:05Z07:00")
    	}
    }
    
    func BenchmarkFormatRFC3339Nano(b *testing.B) {
    	t := Unix(1265346057, 0)
    	for i := 0; i < b.N; i++ {
    		t.Format("2006-01-02T15:04:05.999999999Z07:00")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Gradle supports 2 different file formats for keyrings: a binary format (`.gpg` file) and a plain text format (`.keys`), also known as ASCII-armored format.
    
    There are pros and cons for each of the formats: the binary format is more compact and can be updated directly via GPG commands, but is completely opaque (binary).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"field": "doesnt abide any format",
    					}},
    				patchMyCRDV1Beta1Schema{
    					"change `field`'s format to `byte",
    					map[string]interface{}{
    						"properties": map[string]interface{}{
    							"field": map[string]interface{}{
    								"format": "byte",
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// strings version 2
    				"'%d %s %f %s %s'.format([1, 'abc', 1.0, duration('1m'), timestamp('2000-01-01T00:00:00.000Z')]) == '1 abc 1.000000 60s 2000-01-01T00:00:00Z'": 6,
    				"'%e'.format([3.14]) == '3.140000 × 10⁰⁰'":        3,
    				"'%o %o %o'.format([7, 8, 9]) == '7 10 11'":       2,
    				"'%b %b %b'.format([7, 8, 9]) == '111 1000 1001'": 3,
    			},
    		},
    		{name: "escaped strings",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	var format, version uint16
    	switch {
    	case job.Replicate != nil:
    		version = batchReplVersionV1
    		format = batchReplFormat
    	case job.KeyRotate != nil:
    		version = batchKeyRotateVersionV1
    		format = batchKeyRotationFormat
    	case job.Expire != nil:
    		version = batchExpireVersionV1
    		format = batchExpireFormat
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

                                                        Builder *builder) {
      tensorflow::TensorFormat format;
      if (!FormatFromString(data_format.getValue().str(), &format)) return {};
    
      // Reduce along all dimensions except the feature dimension.
      int64_t feature_dim = GetTensorFeatureDimIndex(rank, format);
      llvm::SmallVector<int64_t, 4> dims_to_reduce(rank - 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top