Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 975 for writeMsg (0.19 sec)

  1. platforms/core-runtime/build-configuration/src/test/groovy/org/gradle/internal/buildconfiguration/UpdateDaemonJvmModifierTest.groovy

        final TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
    
        final TestFile daemonJvmPropertiesFile = tmpDir.file(DaemonJvmPropertiesDefaults.DAEMON_JVM_PROPERTIES_FILE)
    
        def "writes expected properties into file"() {
            when:
            UpdateDaemonJvmModifier.updateJvmCriteria(daemonJvmPropertiesFile, JavaVersion.VERSION_11, JvmVendor.fromString("IBM"), JvmImplementation.VENDOR_SPECIFIC)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/dist/buildruntime.go

    	"strings"
    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package sys\n")
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    // mkbuildcfg writes internal/buildcfg/zbootstrap.go:
    //
    //	package buildcfg
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. internal/logger/logrotate.go

    	// opts are the configuration options for this Writer
    	opts Options
    
    	// f is the currently open file used for appends.
    	// Writes to f are only synchronized once Close() is called,
    	// or when files are being rotated.
    	f *os.File
    
    	pw *xioutil.PipeWriter
    	pr *xioutil.PipeReader
    }
    
    // Write writes p into the current file, rotating if necessary.
    // Write is non-blocking, if the writer's queue is not full.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/sync/atomic/example_test.go

    	m.Store(make(Map))
    	var mu sync.Mutex // used only by writers
    	// read function can be used to read the data without further synchronization
    	read := func(key string) (val string) {
    		m1 := m.Load().(Map)
    		return m1[key]
    	}
    	// insert function can be used to update the data without further synchronization
    	insert := func(key, val string) {
    		mu.Lock() // synchronize with other potential writers
    		defer mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 18 23:58:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteSink.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class ByteSink {
    
      /** Constructor for use by subclasses. */
      protected ByteSink() {}
    
      /**
       * Returns a {@link CharSink} view of this {@code ByteSink} that writes characters to this sink as
       * bytes encoded with the given {@link Charset charset}.
       */
      public CharSink asCharSink(Charset charset) {
        return new AsCharSink(charset);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/ByteSink.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class ByteSink {
    
      /** Constructor for use by subclasses. */
      protected ByteSink() {}
    
      /**
       * Returns a {@link CharSink} view of this {@code ByteSink} that writes characters to this sink as
       * bytes encoded with the given {@link Charset charset}.
       */
      public CharSink asCharSink(Charset charset) {
        return new AsCharSink(charset);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/CharSink.java

        Writer writer = openStream();
        return (writer instanceof BufferedWriter)
            ? (BufferedWriter) writer
            : new BufferedWriter(writer);
      }
    
      /**
       * Writes the given character sequence to this sink.
       *
       * @throws IOException if an I/O error while writing to this sink
       */
      public void write(CharSequence charSequence) throws IOException {
        checkNotNull(charSequence);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/compress/zlib/writer.go

    )
    
    // A Writer takes data written to it and writes the compressed
    // form of that data to an underlying writer (see NewWriter).
    type Writer struct {
    	w           io.Writer
    	level       int
    	dict        []byte
    	compressor  *flate.Writer
    	digest      hash.Hash32
    	err         error
    	scratch     [4]byte
    	wroteHeader bool
    }
    
    // NewWriter creates a new Writer.
    // Writes to the returned Writer are compressed and written to w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 18:51:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libexport/save.h

    #define TENSORFLOW_CC_EXPERIMENTAL_LIBEXPORT_SAVE_H_
    
    #include <string>
    
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace libexport {
    
    // Writes a saved model to disk.
    //
    // Writes a saved model to the given `export_dir`.
    TF_EXPORT Status Save(const std::string& export_dir);
    
    }  // namespace libexport
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:11:53 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. pkg/test/framework/resource/context.go

    	CreateTmpDirectory(prefix string) (string, error)
    
    	// ConfigKube returns a Context that writes config to the provided clusters. If
    	// no clusters are provided, writes to all clusters in the mesh.
    	ConfigKube(clusters ...cluster.Cluster) config.Factory
    
    	// ConfigIstio returns a Context that writes config to all Istio config clusters.
    	ConfigIstio() config.Factory
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top