Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,076 for readArg (0.38 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java

        }
    
        @Nonnull
        default T read(@Nonnull Reader reader) throws XmlReaderException {
            return read(reader, true);
        }
    
        @Nonnull
        default T read(@Nonnull Reader reader, boolean strict) throws XmlReaderException {
            return read(XmlReaderRequest.builder().reader(reader).strict(strict).build());
        }
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    // GenerateKey generates a random RSA private key of the given bit size.
    //
    // Most applications should use [crypto/rand.Reader] as rand. Note that the
    // returned key does not depend deterministically on the bytes read from rand,
    // and may change between calls and/or between versions.
    func GenerateKey(random io.Reader, bits int) (*PrivateKey, error) {
    	return GenerateMultiPrimeKey(random, 2, bits)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. src/net/http/client.go

    	Jar CookieJar
    
    	// Timeout specifies a time limit for requests made by this
    	// Client. The timeout includes connection time, any
    	// redirects, and reading the response body. The timer remains
    	// running after Get, Head, Post, or Do return and will
    	// interrupt reading of the Response.Body.
    	//
    	// A Timeout of zero means no timeout.
    	//
    	// The Client cancels requests to the underlying Transport
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils.cc

      // Version of the code that produced the fingerprint.
      const int kFingerprintProducer = 2;
    
      TF_ASSIGN_OR_RETURN(auto reader, GetRiegeliReader(cpb_file));
    
      auto read_metadata = GetChunkMetadata(reader);
      if (!read_metadata.ok()) {
        reader.Close();
        return absl::FailedPreconditionError(
            absl::StrCat("Couldn't read ChunkMetadata from chunked proto.\n",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/internal/trace/testtrace/expectation.go

    	if !e.failure && err != nil {
    		return fmt.Errorf("unexpected error while reading the trace: %v", err)
    	}
    	if e.failure && err == nil {
    		return fmt.Errorf("expected error while reading the trace: want something matching %q, got none", e.errorMatcher)
    	}
    	if e.failure && err != nil && !e.errorMatcher.MatchString(err.Error()) {
    		return fmt.Errorf("unexpected error while reading the trace: want something matching %q, got %s", e.errorMatcher, err.Error())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/UriTextResource.java

                }
                return file.length() == 0;
            }
            Reader reader = getAsReader();
            try {
                try {
                    return reader.read() == -1;
                } finally {
                    reader.close();
                }
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/io/xpp3/MetadataXpp3Reader.java

        }
    
        /**
         * Method read.
         *
         * @param reader a reader object.
         * @param strict a strict object.
         * @return Metadata
         * @throws IOException            IOException if any.
         * @throws XmlPullParserException XmlPullParserException if
         *                                any.
         */
        public Metadata read(Reader reader, boolean strict) throws IOException, XmlPullParserException {
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

            }
        }
    
        @Override
        public org.apache.maven.model.Model read(Reader reader, Map<String, ?> options) throws IOException {
            Objects.requireNonNull(reader, "reader cannot be null");
            try (Reader r = reader) {
                org.apache.maven.api.model.Model model = read(null, null, r, options);
                return new org.apache.maven.model.Model(model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/streams/DefaultValueStore.java

            private final RandomAccessFile file;
            private final Reader<T> reader;
            private final KryoBackedDecoder decoder;
    
            public Source(File file, Reader<T> reader) throws FileNotFoundException {
                this.file = new RandomAccessFile(file, "r");
                this.reader = reader;
                this.decoder = new KryoBackedDecoder(new BlockInputStream(this.file, 0));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/sha3/shake.go

    // security.
    type ShakeHash interface {
    	hash.Hash
    
    	// Read reads more output from the hash; reading affects the hash's
    	// state. (ShakeHash.Read is thus very different from Hash.Sum)
    	// It never returns an error, but subsequent calls to Write or Sum
    	// will panic.
    	io.Reader
    
    	// Clone returns a copy of the ShakeHash in its current state.
    	Clone() ShakeHash
    }
    
    // cSHAKE specific context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top