Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,421 for readings (0.49 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

         * Base class implementation applies the {@link ClassTransform} to the code.
         *
         * @param builder the builder for the transformed output
         * @param classEntry the entry to process
         * @throws IOException if reading or writing entry fails
         */
        protected void processClassFile(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry classEntry) throws IOException {
            byte[] content = classEntry.getContent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libexport/load.h

      // Reads and returns a checkpoint key associated with a variable.
      //
      // The variable is identified by the index in the object graph node list.
      //
      // RestoreV2 is the operation that will ultimately be responsible for reading
      // and restoring the variable(s)' values.  Variable values are indexed in the
      // checkpoint files by "checkpoint keys".  These keys along with dtype and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/ByteSource.java

       * than would be returned by reading all of the bytes (for example, some special files may return
       * a size of 0 despite actually having content when read).
       *
       * <p>In either case, for mutable sources such as files, a subsequent read may return a different
       * number of bytes if the contents are changed.
       *
       * @throws IOException if an I/O error occurs while reading the size of this source
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
  4. releasenotes/notes/mcp-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 28634
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 202 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/ByteInput.java

        public ByteInput(RandomAccessFile file) {
            this.file = file;
            bufferedInputStream = new ResettableBufferedInputStream(new RandomAccessFileInputStream(file));
        }
    
        /**
         * Starts reading from the given offset.
         */
        public DataInputStream start(long offset) throws IOException {
            file.seek(offset);
            bufferedInputStream.clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/net/http/httputil/httputil.go

    // The chunkedReader returns [io.EOF] when the final 0-length chunk is read.
    //
    // NewChunkedReader is not needed by normal applications. The http package
    // automatically decodes chunking when reading response bodies.
    func NewChunkedReader(r io.Reader) io.Reader {
    	return internal.NewChunkedReader(r)
    }
    
    // NewChunkedWriter returns a new chunkedWriter that translates writes into HTTP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            where:
            testCase                                        | fileAccess
            "reading text with default encoding"            | (TestFile it) -> { UndeclaredFileAccess.fileText(testFilePath(it)) }
            "reading text with customized encoding"         | (TestFile it) -> { UndeclaredFileAccess.fileTextWithEncoding(testFilePath(it)) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/mktests.go

    	var textTrace bytes.Buffer
    	r, err := raw.NewReader(&trace)
    	if err != nil {
    		log.Fatalf("reading trace: %v", err)
    	}
    	w, err := raw.NewTextWriter(&textTrace, version.Current)
    	for {
    		ev, err := r.ReadEvent()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			log.Fatalf("reading trace: %v", err)
    		}
    		if err := w.WriteEvent(ev); err != nil {
    			log.Fatalf("writing trace: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/internal/buildid/rewrite.go

    package buildid
    
    import (
    	"bytes"
    	"cmd/internal/codesign"
    	"crypto/sha256"
    	"debug/macho"
    	"fmt"
    	"io"
    )
    
    // FindAndHash reads all of r and returns the offsets of occurrences of id.
    // While reading, findAndHash also computes and returns
    // a hash of the content of r, but with occurrences of id replaced by zeros.
    // FindAndHash reads bufSize bytes from r at a time.
    // If bufSize == 0, FindAndHash uses a reasonable default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ElevateWordDbm.java

                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnReading = cci("reading", "reading", null, null, String.class, "reading", null, false, false, false,
                "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top