Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,817 for Written (0.31 sec)

  1. internal/ioutil/ioutil.go

    			nw += int64(un)
    		}
    
    		if nw > 0 {
    			written += nw
    		}
    
    		if err != nil {
    			return written, err
    		}
    
    		if nw != int64(len(buf)) {
    			return written, io.ErrShortWrite
    		}
    
    		if totalSize > 0 && written == totalSize {
    			// we have written the entire stream, return right here.
    			return written, nil
    		}
    
    		if eof {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingManager.java

        /**
         * Requests that output written to System.out be routed to Gradle's logging system. The default is that System.out
         * is routed to {@link LogLevel#QUIET}
         *
         * @param level The log level to route System.out to.
         * @return this
         */
        LoggingManager captureStandardOutput(LogLevel level);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/html/template/css.go

    		b.WriteString(repl)
    		written = i + w
    		if repl != `\\` && (written == len(s) || isHex(s[written]) || isCSSSpace(s[written])) {
    			b.WriteByte(' ')
    		}
    	}
    	if written == 0 {
    		return s
    	}
    	b.WriteString(s[written:])
    	return b.String()
    }
    
    var cssReplacementTable = []string{
    	0:    `\0`,
    	'\t': `\9`,
    	'\n': `\a`,
    	'\f': `\c`,
    	'\r': `\d`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/LICENSE

     *    endorse or promote products derived from this software without
     *    prior written permission. For written permission, please contact
     *    ******@****.***.
     *
     * 5. Products derived from this software may not be called "OpenSSL"
     *    nor may "OpenSSL" appear in their names without prior written
     *    permission of the OpenSSL Project.
     *
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/net/sendfile_linux.go

    	if err != nil {
    		return 0, nil, false
    	}
    
    	var werr error
    	err = sc.Read(func(fd uintptr) bool {
    		written, werr, handled = poll.SendFile(&c.pfd, int(fd), remain)
    		return true
    	})
    	if err == nil {
    		err = werr
    	}
    
    	if lr != nil {
    		lr.N = remain - written
    	}
    	return written, wrapSyscallError("sendfile", err), handled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolvedVariantResultSerializer.java

            if (variant == null) {
                encoder.writeSmallInt(-1);
                return;
            }
            Integer index = written.get(variant);
            if (index == null) {
                index = written.size();
                written.put(variant, index);
                encoder.writeSmallInt(index);
                componentIdentifierSerializer.write(encoder, variant.getOwner());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/internal/poll/sendfile_solaris.go

    // at a time.
    const maxSendfileSize int = 4 << 20
    
    // SendFile wraps the sendfile system call.
    func SendFile(dstFD *FD, src int, pos, remain int64) (written int64, err error, handled bool) {
    	defer func() {
    		TestHookDidSendFile(dstFD, src, written, err, handled)
    	}()
    	if err := dstFD.writeLock(); err != nil {
    		return 0, err, false
    	}
    	defer dstFD.writeUnlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_minimize.txt

    ! stdout '^ok'
    stdout 'got the minimum size!'
    # The error message that was printed should be for the one written to testdata.
    stdout 'contains a non-zero byte of length 50'
    stdout FAIL
    
    # Check that the bytes written to testdata are of length 50 (the minimum size)
    go run ./check_testdata FuzzMinimizerRecoverable 50
    
    # Test that re-running the minimized value causes a crash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 22 16:15:36 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      // corresponding callOp, propagate the potentially written decision to the
      // callOp's operands, if the corresponding region's arguments are potentially
      // written resources.
      void PropagatePotentiallyWrittenUpFromCallee(
          Region& region, Operation::operand_range propagate_to);
    
      // Marks 'resource' as written.
      void SetPotentiallyWritten(Value resource);
    
      struct ResourceInfo {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top