Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 975 for writeMsg (0.15 sec)

  1. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

    import java.util.Map;
    
    import org.apache.maven.settings.Settings;
    
    /**
     * Handles serialization of settings into some kind of textual format like XML.
     *
     */
    public interface SettingsWriter {
    
        /**
         * Writes the supplied settings to the specified file. Any non-existing parent directories of the output file will
         * be created automatically.
         *
         * @param output The file to serialize the settings to, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/compress/gzip/gzip.go

    	size        uint32 // Uncompressed size (section 2.3.1)
    	err         error
    }
    
    // NewWriter returns a new [Writer].
    // Writes to the returned writer are compressed and written to w.
    //
    // It is the caller's responsibility to call Close on the [Writer] when done.
    // Writes may be buffered and not flushed until Close.
    //
    // Callers that wish to set the fields in Writer.Header must do so before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/runtime/mbarrier.go

    // value of mheap_.arena_used. (See issue #9984.)
    //
    //
    // Stack writes:
    //
    // The compiler omits write barriers for writes to the current frame,
    // but if a stack pointer has been passed down the call stack, the
    // compiler will generate a write barrier for writes through that
    // pointer (because it doesn't know it's not a heap pointer).
    //
    //
    // Global writes:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/RandomAccessFileOutputStream.java

     * limitations under the License.
     */
    package org.gradle.internal.file;
    
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.RandomAccessFile;
    
    /**
     * Writes to a {@link RandomAccessFile}. Each operation writes to and advances the current position of the file.
     *
     * <p>Closing this stream does not close the underlying file. Flushing this stream does nothing.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. test/fixedbugs/notinheap3.go

    	x uintptr
    }
    
    var (
    	v1 t1
    	v2 t2
    
    	v1s []t1
    	v2s []t2
    )
    
    func f() {
    	// Test direct writes
    	v1.x = nil        // no barrier
    	v2.x = nil        // ERROR "write barrier"
    	v1.s = []nih(nil) // no barrier
    	v2.s = []ih(nil)  // ERROR "write barrier"
    }
    
    func g() {
    	// Test aggregate writes
    	v1 = t1{x: nil} // no barrier
    	v2 = t2{x: nil} // ERROR "write barrier"
    }
    
    func h() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/routes/version.go

    		versionWS.GET("/").To(v.handleVersion).
    			Doc("get the code version").
    			Operation("getCodeVersion").
    			Produces(restful.MIME_JSON).
    			Consumes(restful.MIME_JSON).
    			Writes(version.Info{}))
    
    	c.Add(versionWS)
    }
    
    // handleVersion writes the server's version information.
    func (v Version) handleVersion(req *restful.Request, resp *restful.Response) {
    	responsewriters.WriteRawJSON(http.StatusOK, *v.Version, resp.ResponseWriter)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/wasm/asm.go

    	dataSects = make([]wasmDataSect, len(sections))
    	for i, sect := range sections {
    		data := ld.DatblkBytes(ctxt, int64(sect.Vaddr), int64(sect.Length))
    		dataSects[i] = wasmDataSect{sect, data}
    	}
    }
    
    // asmb writes the final WebAssembly module binary.
    // Spec: https://webassembly.github.io/spec/core/binary/modules.html
    func asmb2(ctxt *ld.Link, ldr *loader.Loader) {
    	types := []*wasmFuncType{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/util/PropertiesUtils.java

    import java.io.StringWriter;
    import java.nio.charset.Charset;
    import java.util.Collections;
    import java.util.List;
    import java.util.Properties;
    
    public class PropertiesUtils {
    
        /**
         * Writes {@link java.util.Properties} in a way that the results can be expected to be reproducible.
         *
         * Uses defaults for the arguments of {@link PropertiesUtils#store(Properties, File, String, Charset, String)}:
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 14:17:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top