Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,541 for readArg (0.66 sec)

  1. maven-core/src/test/resources-project-builder/execution-configuration/pom.xml

                        <execution>
                            <id>security.xml</id>
                            <goals>
                                <goal>java1</goal>
                                <goal>xpp3-reader1</goal>
                                <goal>xpp3-writer1</goal>
                            </goals>
                            <configuration>
                                <version>1.0.0</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 2.2K bytes
    - Viewed (0)
  2. docs/contribute/concurrency.md

    Similarly, the reader thread must never block on writing because this can deadlock the connection. Consider a client and server that both violate this rule. If you get unlucky, they could fill up their TCP buffers (so that writes block) and then use their reader threads to write a frame. Nobody is reading on either end, and the buffers are never drained.
    
    #### Do-stuff-later pool
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.java

                // we called sizeIfKnown and when we started reading the file (or I guess if
                // maxCharsPerByte is wrong)
                // Fallback to an incremental approach
                StringBuilder builder = new StringBuilder(bufIndex + 32);
                builder.append(buffer, 0, bufIndex);
                buffer = null; // release for gc
                CharStreams.copy(reader, builder);
                return builder.toString();
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         */
        boolean getHasEmptyContent() throws ResourceException;
    
        /**
         * Returns an *unbuffered* reader over the content of this resource.
         *
         * <p>Note that this method, or reading from the provided reader, may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/metadata/SwiftcMetadataProvider.java

        }
    
        @Override
        protected SwiftcMetadata parseCompilerOutput(String stdout, String stderr, File swiftc, List<File> path) {
            BufferedReader reader = new BufferedReader(new StringReader(stdout));
            try {
                String line;
                while ((line = reader.readLine()) != null) {
                    if (line.contains("Swift version")) {
                        String[] tokens = line.split(" ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache-spi/src/main/java/org/gradle/caching/BuildCacheEntryReader.java

         *
         * @param input input stream that contains the build cache entry
         * @throws IOException when an I/O error occurs when reading the cache entry from the given input stream
         */
        void readFrom(InputStream input) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:09:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. internal/s3select/select.go

    		return rsc.offset, errors.New("seek past end of object")
    	}
    	if rsc.reader != nil {
    		_ = rsc.reader.Close()
    		rsc.reader = nil
    	}
    	return rsc.offset, nil
    }
    
    // Read call to implement io.Reader
    func (rsc *ObjectReadSeekCloser) Read(p []byte) (n int, err error) {
    	if rsc.reader == nil {
    		rsc.reader, err = rsc.segmentReader(rsc.offset)
    		if err != nil {
    			return 0, err
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/os/fifo_test.go

    		return
    	}
    
    	// Loop reading from FIFO until EOF to ensure that the reader
    	// is not blocked infinitely, otherwise there is something wrong
    	// with the netpoller.
    	for {
    		_, err = r.Read(buf)
    		if errors.Is(err, io.EOF) {
    			break
    		}
    		if err != nil && !errors.Is(err, syscall.EAGAIN) {
    			t.Errorf("Error reading bytes from fifo: %v", err)
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libexport/load.h

      // Returns a list of function defs in the SavedModel.
      const protobuf::RepeatedPtrField<FunctionDef>& GetFunctionDefs();
    
      // Returns a BundleReader for reading variable values.
      //
      // This TFPackage retains ownership of the underlying reader.
      tensorflow::BundleReader* GetVariableReader() {
        return variable_reader_.get();
      }
    
      // Returns whether or not we found a valid checkpoint when loading the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build_read.go

    // findEmbed advances the input reader to the next //go:embed comment.
    // It reports whether it found a comment.
    // (Otherwise it found an error or EOF.)
    func (r *importReader) findEmbed(first bool) bool {
    	// The import block scan stopped after a non-space character,
    	// so the reader is not at the start of a line on the first call.
    	// After that, each //go:embed extraction leaves the reader
    	// at the end of a line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top