Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 239 for Fermat (0.48 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				noError(),
    			},
    		},
    		{
    			name: "valid for byte",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Format: "byte",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "string(self).endsWith('s')",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    // the quantized function using the attr_map attribute. In the quantized
    // function, this map (map1) is in {attr_name_1: attr_identifier} format; and in
    // the float function, this map (map2) is in {attr_identifier: attr_name_2}
    // format. Where, the attribute identifiers should match between two maps,
    // attr_name_1 is the name of the of the attribute needs to be set in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/javadoc.css

         url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff") format("woff");
     }
     /* Lato (bold, regular) */
     @font-face {
         font-display: swap;
         font-family: Lato;
         font-weight: 800;
         font-style: normal;
         src: url("https://assets.gradle.com/lato/fonts/lato-heavy/lato-heavy.woff2") format("woff2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Type = in.Type
    	out.Format = in.Format
    	out.Description = in.Description
    	out.Priority = in.Priority
    	out.JSONPath = in.JSONPath
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Type = in.Type
    	out.Format = in.Format
    	out.Description = in.Description
    	out.Priority = in.Priority
    	out.JSONPath = in.JSONPath
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportImpl.java

                        throw new IOException(
                            String.format("Message size %d exceeds maxiumum buffer size %d", nextCommand != 0 ? nextCommand : size, maximumBufferSize));
                    }
    
                    rl = nextCommand != 0 ? nextCommand : size;
    
                    if ( log.isDebugEnabled() ) {
                        log.debug(String.format("Compound next command %d read size %d remain %d", nextCommand, rl, size));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

     *  Fix: Don't retry when request bodies fail due to `FileNotFoundException`.
     *  Fix: Don't crash when URLs have IPv4-mapped IPv6 addresses.
     *  Fix: Don't crash when building `HandshakeCertificates` on Android API 28.
     *  Fix: Permit multipart file names to contain non-ASCII characters.
     *  New: API to get MockWebServer's dispatcher.
     *  New: API to access headers as `java.time.Instant`.
     *  New: Fail fast if a `SSLSocketFactory` is used as a `SocketFactory`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            String leakDetectionVersion = javaVersion.isCompatibleWith(JavaVersion.VERSION_11) ? "1.17" : "1.14";
            String leakDetectionJar = String.format("file-leak-detector-%s-jar-with-dependencies.jar", leakDetectionVersion);
            String leakDetectorUrl = String.format("https://repo.jenkins-ci.org/releases/org/kohsuke/file-leak-detector/%s/%s", leakDetectionVersion, leakDetectionJar);
            this.beforeExecute(executer -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top