Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for flushed (0.23 sec)

  1. cmd/object-api-multipart_test.go

    		{bucketNames[0], objectNames[0], uploadIDs[0], inputParts[3].parts, s3MD5, nil, true},
    		// The other parts will be flushed after a successful CompletePart (Test number 18).
    		// the case above successfully completes CompleteMultipartUpload, the remaining Parts will be flushed.
    		// Expecting to fail with Invalid UploadID.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_experimental.h

    // have been executed. Note that "execution" here refers to kernel execution /
    // scheduling of copies, etc. Similar to sync execution, it doesn't guarantee
    // that lower level device queues (like GPU streams) have been flushed.
    //
    // This call may not block for execution of ops enqueued concurrently with this
    // call.
    TF_CAPI_EXPORT extern void TFE_ExecutorWaitForAllPendingNodes(
        TFE_Executor*, TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        // Cause the size to grow to 12 should evict 'A'.
        set("c", "c", "c")
        cache.flush()
        assertThat(cache.size()).isEqualTo(8)
        assertAbsent("a")
        assertValue("b", "bb", "bbbb")
        assertValue("c", "c", "c")
    
        // Causing the size to grow to 10 should evict nothing.
        set("d", "d", "d")
        cache.flush()
        assertThat(cache.size()).isEqualTo(10)
        assertAbsent("a")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/net/http/server.go

    		n += n0
    		if err != nil || n0 < sniffLen {
    			return n, err
    		}
    	}
    
    	w.w.Flush()  // get rid of any previous writes
    	w.cw.flush() // make sure Header is written; flush data to rwc
    
    	// Now that cw has been flushed, its chunking field is guaranteed initialized.
    	if !w.cw.chunking && w.bodyAllowed() {
    		n0, err := rf.ReadFrom(src)
    		n += n0
    		w.written += n0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"flight_departure":                     "\U0001f6eb",
    	"flipper":                              "\U0001f42c",
    	"floppy_disk":                          "\U0001f4be",
    	"flower_playing_cards":                 "\U0001f3b4",
    	"flushed":                              "\U0001f633",
    	"fly":                                  "\U0001fab0",
    	"flying_disc":                          "\U0001f94f",
    	"flying_saucer":                        "\U0001f6f8",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. src/runtime/stack.go

    			// thisg.m.p == 0 can happen in the guts of exitsyscall
    			// or procresize. Just get a stack from the global pool.
    			// Also don't touch stackcache during gc
    			// as it's flushed concurrently.
    			lock(&stackpool[order].item.mu)
    			x = stackpoolalloc(order)
    			unlock(&stackpool[order].item.mu)
    		} else {
    			c := thisg.m.p.ptr().mcache
    			x = c.stackcache[order].list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier_test.go

    		`)
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    
    	// Delete a service; its chains will be flushed, but not immediately deleted.
    	fp.OnServiceDelete(svc2)
    	fp.syncProxyRules()
    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	statsSeq atomic.Uint32
    
    	// Timer heap.
    	timers timers
    
    	// maxStackScanDelta accumulates the amount of stack space held by
    	// live goroutines (i.e. those eligible for stack scanning).
    	// Flushed to gcController.maxStackScan once maxStackScanSlack
    	// or -maxStackScanSlack is reached.
    	maxStackScanDelta int64
    
    	// gc-time statistics about current goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertFailsWith<IOException> {
          out.writeUtf8("square")
          out.flush()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("stream was reset: CANCEL")
        }
        // Close throws because buffered data wasn't flushed.
        assertFailsWith<IOException> {
          out.close()
        }
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/testing/testing.go

    			fmt.Fprintf(os.Stderr, "testing: can't write %s: %s\n", *testlog, err)
    			os.Exit(2)
    		}
    	}
    	if *cpuProfile != "" {
    		m.deps.StopCPUProfile() // flushes profile to disk
    	}
    	if *traceFile != "" {
    		trace.Stop() // flushes trace to disk
    	}
    	if *memProfile != "" {
    		f, err := os.Create(toOutputDir(*memProfile))
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "testing: %s\n", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top