Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for Fermat (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/eviction/helpers.go

    		return &resource.Quantity{Format: resource.BinarySI}
    	}
    	usage := int64(*fsStats.UsedBytes)
    	return resource.NewQuantity(usage, resource.BinarySI)
    }
    
    // inodeUsage converts inodes consumed into a resource quantity.
    func inodeUsage(fsStats *statsapi.FsStats) *resource.Quantity {
    	if fsStats == nil || fsStats.InodesUsed == nil {
    		return &resource.Quantity{Format: resource.DecimalSI}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      }
    
     private:
      /// Legalize the given filter by converting it from TensorFlow filter data
      /// format to TFLite DepthwiseConv2D op filter data format and return Value
      /// for the converted filter.  TensorFlow filter data format is
      /// [filter_height, filter_width, in_channels, channel_multiplier] and TFLite
      /// filter data format is [1, filter_height, filter_width, out_channels].
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top