Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,817 for Written (0.11 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AnsiContext.java

        /**
         * @return the current context with the specified text written.
         */
        AnsiContext a(CharSequence value);
    
        /**
         * @return the current context with a new line written.
         */
        AnsiContext newLine();
    
        /**
         * @return the current context with the specified new line written.
         */
        AnsiContext newLines(int numberOfNewLines);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/SignatureType.java

         */
        String combinedExtension(File toSign);
    
        /**
         * Signs the given file and returns the file where the signature has been written to.
         *
         * @param signatory The signatory
         * @param toSign The file to be signed
         * @return The file where the signature has been written to
         */
        File sign(Signatory signatory, File toSign);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/mime/quotedprintable/example_test.go

    		"Hello, Gophers! This symbol will be unescaped: =3D and this will be written in =\r\none line.",
    	} {
    		b, err := io.ReadAll(quotedprintable.NewReader(strings.NewReader(s)))
    		fmt.Printf("%s %v\n", b, err)
    	}
    	// Output:
    	// Hello, Gophers! <nil>
    	// invalid escape: <b style="font-size: 200%">hello</b> <nil>
    	// Hello, Gophers! This symbol will be unescaped: = and this will be written in one line. <nil>
    }
    
    func ExampleNewWriter() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go

    	d.Len = uint64(length)
    }
    
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	var writtenOut uint64 = 0
    	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
    
    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/LoggingOutput.java

    /**
     * Provides access to the output of the Gradle logging system.
     */
    @HasInternalProtocol
    public interface LoggingOutput {
        /**
         * Adds a listener which receives output written to standard output by the Gradle logging system.
         *
         * @param listener The listener to add.
         */
        void addStandardOutputListener(StandardOutputListener listener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

        bool is_read;
        // Is this resource written in any of the regions?
        bool is_written;
        // Is this resource written in all of the regions?
        bool is_written_all;
        // The hoisted read used to replace region reads.
        Value hoisted_read;
        // the type of the data held by the resource.
        Type data_type;
        // For written resources, the result # of the lifted op which will hold the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. android/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)
  8. src/os/writeto_linux_test.go

    	})
    	poll.TestHookDidSendFile = func(dstFD *poll.FD, src int, written int64, err error, handled bool) {
    		h.called = true
    		h.dstfd = dstFD.Sysfd
    		h.srcfd = src
    		h.written = written
    		h.err = err
    		h.handled = handled
    	}
    	return h
    }
    
    type sendFileHook struct {
    	called bool
    	dstfd  int
    	srcfd  int
    
    	written int64
    	handled bool
    	err     error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go

    	cmsg.Len = uint32(length)
    }
    
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	var writtenOut uint64 = 0
    	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0, 0)
    
    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/syscall/syscall_freebsd_386.go

    	cmsg.Len = uint32(length)
    }
    
    func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	var writtenOut uint64 = 0
    	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0)
    
    	written = int(writtenOut)
    
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.2K bytes
    - Viewed (0)
Back to top