Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,913 for Fermat (0.14 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/FormatSupport.java

            return DateTimeFormatter.ISO_INSTANT.format(time);
        }
    
        public static String date(Date date) {
            return format(date, "yyyy-MM-dd");
        }
    
        private static String format(Date date, String format) {
            DateFormat timeStampFormat = new SimpleDateFormat(format);
            timeStampFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
            return timeStampFormat.format(date);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/image_format/README.md

    # SavedModel Image Format
    
    Everything related to the SavedModel Image format belongs in this directory.
    If you are a TensorFlow Python user, you can try this format by setting the
    `experimental_image_format` option:
    
    ```
    tf.savedmodel.save(
        model, path,
        options=tf.saved_model.SaveOptions(experimental_image_format=True)
    )
    ```
    
    When this option is enabled, exported SavedModels with proto size > 2GB will
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 29 22:11:19 UTC 2023
    - 674 bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

                // The DI system doesn't support injecting non-static inner classes.
                throw new ServiceValidationException(
                    String.format(
                        "Unable to select constructor for non-static inner class %s.",
                        format(type)
                    )
                );
            }
    
            final Constructor<?>[] constructors = type.getDeclaredConstructors();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/testdata/swagger-precision-item-v3.json

                "type": "integer",
                "format": "int32"
              },
              "int64": {
                "description": "Int64 field.",
                "type": "integer",
                "format": "int64"
              },
              "float32": {
                "description": "Float32 field.",
                "type": "number",
                "format": "float32"
              },
              "float64": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_extra_data_types/test_tutorial001_py310.py

                                "type": "string",
                                "format": "date-time",
                            },
                            "end_datetime": {
                                "title": "End Datetime",
                                "type": "string",
                                "format": "date-time",
                            },
                            "repeat_at": IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"kind": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Kind is the API kind the resources belong to. Required.",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. docs/debugging/reorder-disks/main.go

    	return result, nil
    }
    
    func getFormatJSON(path string) (format, error) {
    	formatJSON, err := os.ReadFile(filepath.Join(path, ".minio.sys/format.json"))
    	if err != nil {
    		return format{}, err
    	}
    	var f format
    	err = json.Unmarshal(formatJSON, &f)
    	if err != nil {
    		return format{}, err
    	}
    
    	return f, nil
    }
    
    func getDiskLocation(f format) (string, error) {
    	for i, set := range f.XL.Sets {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/fmt/print.go

    // It returns the number of bytes written and any write error encountered.
    func Printf(format string, a ...any) (n int, err error) {
    	return Fprintf(os.Stdout, format, a...)
    }
    
    // Sprintf formats according to a format specifier and returns the resulting string.
    func Sprintf(format string, a ...any) string {
    	p := newPrinter()
    	p.doPrintf(format, a)
    	s := string(p.buf)
    	p.free()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ArtifactNotFoundException.java

            super(format(artifact, attemptedLocations));
        }
    
        private static String format(ComponentArtifactIdentifier artifact, List<String> locations) {
            StringBuilder builder = new StringBuilder();
            builder.append(String.format("Could not find %s.", artifact.getDisplayName()));
            if (!locations.isEmpty()) {
                builder.append(String.format("%nSearched in the following locations:"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:55 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                            protected String getName() {
                                return String.format("%s [%s]", super.getName(), locale);
                            }
    
                            @Override// The name of the test method
                            protected String testName(final FrameworkMethod method) {
                                return String.format("%s [%s]", method.getName(), locale);
                            }
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top