Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for writes (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task b = task("b", type: AsyncWithLocalState)
            _ * b.localStateFile >> sharedFile
    
            expect:
            tasksAreNotExecutedInParallel(a, b)
        }
    
        def "a task that writes into a directory that is an output of a running task is not started"() {
            given:
            Task a = task("a", type: AsyncWithOutputDirectory)
            _ * a.outputDirectory >> file("outputDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	-coverprofile cover.out
    	    Write a coverage profile to the file after all tests have passed.
    	    Sets -cover.
    
    	-cpuprofile cpu.out
    	    Write a CPU profile to the specified file before exiting.
    	    Writes test binary as -c would.
    
    	-memprofile mem.out
    	    Write an allocation profile to the file after all tests have passed.
    	    Writes test binary as -c would.
    
    	-memprofilerate n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

       the loop.
    
    ### `-tf-hoist-replicate-invariant-resource-writes`
    
    _Hoists writes to replicate invariant resource variables._
    
    This pass hoists replicate invariant resource variable writes outside
    tf_device.replicate op. These may have been inserted by other passes such as
    resource op lifting. However, if the resource variable is not replicated, writes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. src/net/http/request.go

    // hasn't been set to "identity", Write adds "Transfer-Encoding:
    // chunked" to the header. Body is closed after it is sent.
    func (r *Request) Write(w io.Writer) error {
    	return r.write(w, false, nil, nil)
    }
    
    // WriteProxy is like [Request.Write] but writes the request in the form
    // expected by an HTTP proxy. In particular, [Request.WriteProxy] writes the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		if errors.Is(err, errNoHealRequired) {
    			countNoHeal++
    		}
    		r.DiskCount += result.DiskCount
    		r.SetCount += result.SetCount
    		r.Before.Drives = append(r.Before.Drives, result.Before.Drives...)
    		r.After.Drives = append(r.After.Drives, result.After.Drives...)
    	}
    
    	// No heal returned by all serverPools, return errNoHealRequired
    	if countNoHeal == len(z.serverPools) {
    		return r, errNoHealRequired
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    		// cmd.Stdout and cmd.Stderr in order to keep the underlying
    		// interleaving of writes, but then it would see even partial writes
    		// interleaved, which would corrupt the JSON. So, we only process
    		// cmd.Stdout. This has another consequence though: if stdout==stderr,
    		// we have to serialize Writes in case the Writer is not concurrent
    		// safe. If we were just passing stdout/stderr through to exec, it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/xcoff.go

    	return off
    }
    
    // write writes string table t into the output file.
    func (t *xcoffStringTable) write(out *OutBuf) {
    	out.Write32(uint32(t.size()))
    	for _, s := range t.strings {
    		out.WriteString(s)
    		out.Write8(0)
    	}
    }
    
    // write writes XCOFF section sect into the output file.
    func (sect *XcoffScnHdr64) write(ctxt *Link) {
    	binary.Write(ctxt.Out, binary.BigEndian, sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  9. src/testing/testing.go

    // finding bugs. If the fuzz target fails for a given input, the fuzzing engine
    // writes the inputs that caused the failure to a file in the directory
    // testdata/fuzz/<Name> within the package directory. This file later serves as
    // a seed input. If the file can't be written at that location (for example,
    // because the directory is read-only), the fuzzing engine writes the file to
    // the fuzz cache directory within the build cache instead.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
Back to top