Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,817 for Written (0.67 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/PropertiesUtilsTest.groovy

    class PropertiesUtilsTest extends Specification {
        def "empty properties are written properly"() {
            expect:
            write([:]) == ""
        }
    
        def "empty properties with comment are written properly"() {
            expect:
            write([:], "Line comment") == normalize("""
                #Line comment
                """)
        }
    
        def "simple properties are written sorted alphabetically"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/html/template/url.go

    		return strings.ReplaceAll(s, ",", "%2c")
    	}
    
    	var b strings.Builder
    	written := 0
    	for i := 0; i < len(s); i++ {
    		if s[i] == ',' {
    			filterSrcsetElement(s, written, i, &b)
    			b.WriteString(",")
    			written = i + 1
    		}
    	}
    	filterSrcsetElement(s, written, len(s), &b)
    	return b.String()
    }
    
    // Derived from https://play.golang.org/p/Dhmj7FORT5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/HashingOutputStream.java

     * An {@link OutputStream} that maintains a hash of the data written to it.
     *
     * @author Nick Piepmeier
     * @since 16.0
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    public final class HashingOutputStream extends FilterOutputStream {
      private final Hasher hasher;
    
      /**
       * Creates an output stream that hashes using the given {@link HashFunction}, and forwards all
       * data written to it to the underlying {@link OutputStream}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/CharSink.java

    import java.io.Writer;
    import java.nio.charset.Charset;
    import java.util.Iterator;
    import java.util.stream.Stream;
    
    /**
     * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a
     * {@code CharSink} is not an open, stateful stream that can be written to and closed. Instead, it
     * is an immutable <i>supplier</i> of {@code Writer} instances.
     *
     * <p>{@code CharSink} provides two kinds of methods:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/CountingOutputStream.java

    /**
     * An OutputStream that counts the number of bytes written.
     *
     * @author Chris Nokleberg
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class CountingOutputStream extends FilterOutputStream {
    
      private long count;
    
      /**
       * Wraps another output stream, counting the number of bytes written.
       *
       * @param out the output stream to be wrapped
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/index_format.txt

    This file documents the index format that is read and written by this package.
    The index format is an encoding of a series of RawPackage structs
    
    Field names refer to fields on RawPackage and rawFile.
    The file uses little endian encoding for the uint32s.
    Strings are written into the string table at the end of the file.
    Each string is prefixed with a uvarint-encoded length.
    Bools are written as uint32s: 0 for false and 1 for true.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_acl_windows.txt

    cp stdout $WORK\guest-acl.txt
    
    cd $WORK
    
    # The executable written to the source directory should have the same ACL as the source file.
    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    # The file written to the guest-allowed directory should give Guests control.
    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/net/splice_linux_test.go

    		// poll.Splice is expected to handle the data transmission successfully.
    		if !hook.handled || hook.written != int64(size) || hook.err != nil {
    			t.Errorf("expected handled = true, written = %d, err = nil, but got handled = %t, written = %d, err = %v",
    				size, hook.handled, hook.written, hook.err)
    		}
    	} else if hook.called {
    		// poll.Splice will certainly not be called when the source
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/runtime/print.go

    var (
    	// printBacklog is a circular buffer of messages written with the builtin
    	// print* functions, for use in postmortem analysis of core dumps.
    	printBacklog      [512]byte
    	printBacklogIndex int
    )
    
    // recordForPanic maintains a circular buffer of messages written by the
    // runtime leading up to a process crash, allowing the messages to be
    // extracted from a core dump.
    //
    // The text written during a process crash (following "panic" or "fatal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

                withTotalProblemsCount(0)
            }
            postBuildOutputContains 'Build scan written to'
    
            when:
            configurationCacheRun 'jar', '--scan', '-Dscan.dump'
    
            then:
            configurationCache.assertStateLoaded()
            postBuildOutputContains 'Build scan written to'
        }
    
        static String getDvConventionsConfig() {
            """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top