Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,759 for tile (0.08 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    If a `file_pattern` matches several files, `preferred_shard` can be used to hint
    in which file the requested tensor is likely to be found. This op will first
    open the file at index `preferred_shard` in the list of matching files and try
    to restore tensors from that file.  Only if some tensors or tensor slices are
    not found in that first file, then the Op opens all the files. Setting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  3. tests/test_tutorial/test_extra_data_types/test_tutorial001.py

                                "title": "End Datetime",
                                "type": "string",
                                "format": "date-time",
                            },
                            "repeat_at": IsDict(
                                {
                                    "title": "Repeat At",
                                    "anyOf": [
                                        {"type": "string", "format": "time"},
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_request_files/test_tutorial002.py

        path = tmp_path / "test.txt"
        path.write_bytes(b"<file content>")
        path2 = tmp_path / "test2.txt"
        path2.write_bytes(b"<file content2>")
    
        client = TestClient(app)
        with path.open("rb") as file, path2.open("rb") as file2:
            response = client.post(
                "/files/",
                files=(
                    ("files", ("test.txt", file)),
                    ("files", ("test2.txt", file2)),
                ),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py310.py

                                "title": "End Datetime",
                                "type": "string",
                                "format": "date-time",
                            },
                            "repeat_at": IsDict(
                                {
                                    "title": "Repeat At",
                                    "anyOf": [
                                        {"type": "string", "format": "time"},
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/cmd/trace/goroutines.go

    			{{$Goroutine := .}}
    			{{range $.NonOverlappingStats}}
    				{{$Time := index $Goroutine.NonOverlappingStats .}}
    				{{if $Time}}
    					<span {{barStyle . $Time $.MaxTotal}}>&nbsp;</span>
    				{{end}}
    			{{end}}
    			</div>
    		</td>
    		{{$Goroutine := .}}
    		{{range $.NonOverlappingStats}}
    			{{$Time := index $Goroutine.NonOverlappingStats .}}
    			<td> {{$Time.String}}</td>
    		{{end}}
    	</tr>
    {{end}}
    </table>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/net/parse.go

    // license that can be found in the LICENSE file.
    
    // Simple file i/o and string manipulation, to avoid
    // depending on strconv and bufio and strings.
    
    package net
    
    import (
    	"internal/bytealg"
    	"io"
    	"os"
    	"time"
    )
    
    type file struct {
    	file  *os.File
    	data  []byte
    	atEOF bool
    }
    
    func (f *file) close() { f.file.Close() }
    
    func (f *file) getLineFromData() (s string, ok bool) {
    	data := f.data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. tests/embedded_struct_test.go

    func TestEmbeddedPointerTypeStruct(t *testing.T) {
    	type BasePost struct {
    		Id    int64
    		Title string
    		URL   string
    	}
    
    	type Author struct {
    		ID          string
    		Name        string
    		Email       string
    		Age         int
    		Content     Content
    		ContentPtr  *Content
    		Birthday    time.Time
    		BirthdayPtr *time.Time
    	}
    
    	type HNPost struct {
    		*BasePost
    		Upvotes int32
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/testing/fstest/testfs.go

    	}
    	if i := strings.Index(file, "/"); i >= 0 {
    		bad = append(bad,
    			file[:i]+"//"+file[i+1:],
    			file[:i]+"/./"+file[i+1:],
    			file[:i]+`\`+file[i+1:],
    			file[:i]+"/../"+file,
    		)
    	}
    	if i := strings.LastIndex(file, "/"); i >= 0 {
    		bad = append(bad,
    			file[:i]+"//"+file[i+1:],
    			file[:i]+"/./"+file[i+1:],
    			file[:i]+`\`+file[i+1:],
    			file+"/../"+file[i+1:],
    		)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/internal/trace/gc_test.go

    	for _, test := range []struct {
    		window time.Duration
    		want   float64
    		worst  []float64
    	}{
    		{0, 0, []float64{}},
    		{time.Millisecond, 0, []float64{0, 0}},
    		{time.Second, 0, []float64{0, 0}},
    		{2 * time.Second, 0.5, []float64{0.5, 0.5}},
    		{3 * time.Second, 1 / 3.0, []float64{1 / 3.0}},
    		{4 * time.Second, 0.5, []float64{0.5}},
    		{5 * time.Second, 3 / 5.0, []float64{3 / 5.0}},
    		{6 * time.Second, 3 / 5.0, []float64{3 / 5.0}},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top