Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,149 for writes (0.14 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/ReproduciblePropertiesWriter.kt

        companion object {
            /**
             * Writes [Map] of data as [Properties] to a file, but without including the timestamp comment.
             *
             * See [PropertiesUtils.store].
             */
            fun store(data: Map<String, Any>, file: File, comment: String? = null) {
                store(propertiesFrom(data), file, comment)
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/TransformExecutionResultSerializerTest.groovy

        def "reads and writes transformation results"() {
            expect:
            assertCanWriteAndReadResult(
                inputArtifact.file("inside"),
                inputArtifact,
                outputDir.file("first"),
                outputDir.file("second"),
                outputDir
            )
        }
    
        def "reads and writes output only transformation results"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      ParallelIdsMap GetParallelIdsMap(Operation* op);
    
      // Converts from read/write state that relates ops with the same parallel id
      // to a set of last accesses for use with other parallel ids. Reads/writes
      // between parallel ids are conservatively approximated as writes.
      absl::flat_hash_set<Operation*> GetLastWrites(ResourceId resource_id);
    
      // Sets the read/write state for ops within the same parallel id.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

            }
    
            /**
             * Writes a JAR entry.
             * @param path the path of the entry
             * @param bytes the body of the entry
             */
            void entry(String path, byte[] bytes) {
                checkManifestWritten()
                jarOut.putNextEntry(newEntryWithFixedTime(path))
                jarOut.write(bytes)
            }
    
            /**
             * Writes a JAR entry.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/runtime/time_fake.go

    	return faketime / 1e9, int32(faketime % 1e9), faketime
    }
    
    // write is like the Unix write system call.
    // We have to avoid write barriers to avoid potential deadlock
    // on write calls.
    //
    //go:nowritebarrierrec
    func write(fd uintptr, p unsafe.Pointer, n int32) int32 {
    	if !(fd == 1 || fd == 2) {
    		// Do an ordinary write.
    		return write1(fd, p, n)
    	}
    
    	// Write with the playback header.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_read_for_write.cc

    };
    
    // Helper struct holding a resource value and its associated type.
    struct ResourceValueAndSubtype {
      Value resource;
      Type subtype;
    };
    
    // Finds resource handle and type for result if result writes to a resource.
    ResourceValueAndSubtype GetResourceWriteResult(
        tf_device::ClusterFuncOp cluster_func, Value result) {
      ResourceValueAndSubtype resource;
      if (!result.hasOneUse()) return resource;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 16:54:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. pkg/proxy/util/linebuffer.go

    type LineBuffer interface {
    	// Write takes a list of arguments, each a string or []string, joins all the
    	// individual strings with spaces, terminates with newline, and writes them to the
    	// buffer. Any other argument type will panic.
    	Write(args ...interface{})
    
    	// WriteBytes writes bytes to the buffer, and terminates with newline.
    	WriteBytes(bytes []byte)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/StreamingStyledTextOutput.java

    package org.gradle.internal.logging.text;
    
    import org.gradle.api.logging.StandardOutputListener;
    
    import java.io.Closeable;
    import java.io.IOException;
    
    /**
     * A {@link StyledTextOutput} implementation which writes text to some char stream. Ignores any
     * styling information.
     */
    public class StreamingStyledTextOutput extends AbstractStyledTextOutput implements Closeable {
        private final StandardOutputListener listener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof.go

    	p.mu.Lock()
    	defer p.mu.Unlock()
    	delete(p.m, value)
    }
    
    // WriteTo writes a pprof-formatted snapshot of the profile to w.
    // If a write to w returns an error, WriteTo returns that error.
    // Otherwise, WriteTo returns nil.
    //
    // The debug parameter enables additional output.
    // Passing debug=0 writes the gzip-compressed protocol buffer described
    // in https://github.com/google/pprof/tree/main/proto#overview.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptorTest.groovy

        @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        def "writes default descriptor"() {
            def file = tmpDir.file("out.xml")
    
            when:
            descriptor.writeTo(file)
    
            then:
            def root = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new ByteArrayInputStream(file.bytes)).documentElement
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top