Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 491 for small7 (0.09 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/BUILD

            "//tensorflow/c:tf_status",
            "@com_google_absl//absl/base:core_headers",
            "@com_google_absl//absl/synchronization",
        ],
    )
    
    tf_cc_test(
        name = "ram_file_block_cache_test",
        size = "small",
        srcs = ["ram_file_block_cache_test.cc"],
        deps = [
            ":ram_file_block_cache",
            "//tensorflow/c:tf_status_internal",
            "//tensorflow/core:lib",
            "//tensorflow/core:test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/namedReturn_test.go

    // where 0xdeaddeaddeaddead is written.
    type B [4]int
    
    // small (SSAable) array
    type A1 [3]*B
    
    //go:noinline
    func f1() (t A1) {
    	t[0] = &B{91, 92, 93, 94}
    	runtime.GC()
    	return t
    }
    
    // large (non-SSAable) array
    type A2 [8]*B
    
    //go:noinline
    func f2() (t A2) {
    	t[0] = &B{91, 92, 93, 94}
    	runtime.GC()
    	return t
    }
    
    // small (SSAable) struct
    type A3 struct {
    	a, b, c *B
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/internal/cov/read_test.go

    	}
    
    	// Build a tiny test program with -cover. Smallness is important;
    	// it is one of the factors that triggers issue 58411.
    	d := t.TempDir()
    	exepath := filepath.Join(d, "small.exe")
    	path := filepath.Join("testdata", "small.go")
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build",
    		"-o", exepath, "-cover", path)
    	b, err := cmd.CombinedOutput()
    	if len(b) != 0 {
    		t.Logf("## build output:\n%s", b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/hash/crc32/crc32_s390x.go

    func archAvailableCastagnoli() bool {
    	return hasVX
    }
    
    var archCastagnoliTable8 *slicing8Table
    
    func archInitCastagnoli() {
    	if !hasVX {
    		panic("not available")
    	}
    	// We still use slicing-by-8 for small buffers.
    	archCastagnoliTable8 = slicingMakeTable(Castagnoli)
    }
    
    // archUpdateCastagnoli calculates the checksum of p using
    // vectorizedCastagnoli.
    func archUpdateCastagnoli(crc uint32, p []byte) uint32 {
    	if !hasVX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. doc/initial/6-stdlib/99-minor/README

    API changes and other small changes to the standard library go here....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 69 bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/metadata.md

    | Parameter | Typ | Beschreibung |
    |------------|------|-------------|
    | `title` | `str` | Der Titel der API. |
    | `summary` | `str` | Eine kurze Zusammenfassung der API. <small>Verfügbar seit OpenAPI 3.1.0, FastAPI 0.99.0.</small> |
    | `description` | `str` | Eine kurze Beschreibung der API. Kann Markdown verwenden. |
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:25:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/metadata.md

    | `contact`...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    Contributing
    ============
    
    Keeping the project small and stable limits our ability to accept new contributors. We are not
    seeking new committers at this time, but some small contributions are welcome.
    
    If you've found a security problem, please follow our [bug bounty][security] program.
    
    If you've found a bug, please contribute a failing test case so we can study and fix it.
    
    If you have a new feature idea, please build it in an external library. There are
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. docs/contribute/contributing.md

    Contributing
    ============
    
    Keeping the project small and stable limits our ability to accept new contributors. We are not
    seeking new committers at this time, but some small contributions are welcome.
    
    If you've found a security problem, please follow our [bug bounty][security] program.
    
    If you've found a bug, please contribute a failing test case so we can study and fix it.
    
    If you have a new feature idea, please build it in an external library. There are
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Feb 14 08:26:50 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. internal/hash/errors.go

    	return "Bad digest: Expected " + e.ExpectedMD5 + " does not match calculated " + e.CalculatedMD5
    }
    
    // SizeTooSmall reader size too small
    type SizeTooSmall struct {
    	Want int64
    	Got  int64
    }
    
    func (e SizeTooSmall) Error() string {
    	return fmt.Sprintf("Size small: got %d, want %d", e.Got, e.Want)
    }
    
    // SizeTooLarge reader size too large
    type SizeTooLarge struct {
    	Want int64
    	Got  int64
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 15 21:08:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top