Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for 1e23 (0.05 sec)

  1. cmd/xl-storage-format_test.go

    	xhttp "github.com/minio/minio/internal/http"
    )
    
    func TestIsXLMetaFormatValid(t *testing.T) {
    	tests := []struct {
    		name    int
    		version string
    		format  string
    		want    bool
    	}{
    		{1, "123", "fs", false},
    		{2, "123", xlMetaFormat, false},
    		{3, xlMetaVersion100, "test", false},
    		{4, xlMetaVersion101, "hello", false},
    		{5, xlMetaVersion100, xlMetaFormat, true},
    		{6, xlMetaVersion101, xlMetaFormat, true},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/schema-extra-example.md

    === "Python 3.10+ Pydantic v2"
    
        ```Python hl_lines="13-24"
        {!> ../../../docs_src/schema_extra_example/tutorial001_py310.py!}
        ```
    
    === "Python 3.10+ Pydantic v1"
    
        ```Python hl_lines="13-23"
        {!> ../../../docs_src/schema_extra_example/tutorial001_py310_pv1.py!}
        ```
    
    === "Python 3.8+ Pydantic v2"
    
        ```Python hl_lines="15-26"
        {!> ../../../docs_src/schema_extra_example/tutorial001.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Feb 09 12:35:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    	A *smallPointer
    	B byte
    	C *smallPointer
    	D [11]byte
    }
    type mediumScalarEven [8192]byte
    type mediumScalarOdd [3321]byte
    type mediumPointerEven [1024]*smallPointer
    type mediumPointerOdd [1023]*smallPointer
    
    type largeScalar [UserArenaChunkBytes + 1]byte
    type largePointer [UserArenaChunkBytes/unsafe.Sizeof(&smallPointer{}) + 1]*smallPointer
    
    func TestUserArena(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            when:
            file("src/main/${languageName}/TopLevel.${languageName}").text = """
                public class TopLevel {
                   static class Inner {
                      public static final int CONST = 1223;
                   }
                }
            """
    
            then:
            succeeds language.compileTaskName
            outputs.recompiledClasses('MyClass', 'MyClass2', 'TopLevel$Inner', 'TopLevel')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    		{token.FLOAT, "0.e+1", "0.e+1", ""},
    		{token.FLOAT, "123.E-10", "123.E-10", ""},
    		{token.FLOAT, "0123.e123", "0123.e123", ""},
    
    		{token.FLOAT, ".0e-1", ".0e-1", ""},
    		{token.FLOAT, ".123E+10", ".123E+10", ""},
    		{token.FLOAT, ".0123E123", ".0123E123", ""},
    
    		{token.FLOAT, "0.0e1", "0.0e1", ""},
    		{token.FLOAT, "123.123E-10", "123.123E-10", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 1245
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 1123
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.buildcache.TaskOutputCachingJavaPerformanceTest.clean assemble with local cache",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  7. src/regexp/syntax/parse_test.go

    	`\Qabc\E`,
    	`\Q*+?{[\E`,
    	`\Q\\E`,
    	`\Q\\\E`,
    	`\Q\\\\E`,
    	`\Q\\\\\E`,
    	`(?:a)`,
    	`(?P<name>a)`,
    }
    
    var onlyPOSIX = []string{
    	"a++",
    	"a**",
    	"a?*",
    	"a+*",
    	"a{1}*",
    	".{1}{2}.{3}",
    }
    
    func TestParseInvalidRegexps(t *testing.T) {
    	for _, regexp := range invalidRegexps {
    		if re, err := Parse(regexp, Perl); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. src/fmt/format.go

    			// If no precision is set explicitly use a precision of 6.
    			if digits == -1 {
    				digits = 6
    			}
    		}
    
    		// Buffer pre-allocated with enough room for
    		// exponent notations of the form "e+123" or "p-1023".
    		var tailBuf [6]byte
    		tail := tailBuf[:0]
    
    		hasDecimalPoint := false
    		sawNonzeroDigit := false
    		// Starting from i = 1 to skip sign at num[0].
    		for i := 1; i < len(num); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. cmd/api-router.go

    // objectAPIHandlers implements and provides http handlers for S3 API.
    type objectAPIHandlers struct {
    	ObjectAPI func() ObjectLayer
    }
    
    // getHost tries its best to return the request host.
    // According to section 14.23 of RFC 2616 the Host header
    // can include the port number if the default value of 80 is not used.
    func getHost(r *http.Request) string {
    	if r.URL.IsAbs() {
    		return r.URL.Host
    	}
    	return r.Host
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/array_grad_test.cc

    }
    
    TEST_F(ArrayGradTest, StackGrad_Axis1) {
      TensorShape x_shape({1, 2, 3});
      std::vector<Output> xs;
      xs.push_back(Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape)));
      xs.push_back(Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape)));
      auto y = Stack(scope_, xs, Stack::Axis(1));
      TensorShape y_shape({1, 2, 2, 3});
      RunTest(xs, {x_shape, x_shape}, {y}, {y_shape});
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top