Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,081 for readArg (0.33 sec)

  1. src/go/internal/gcimporter/ureader.go

    	return &reader{
    		Decoder: pr.TempDecoder(k, idx, marker),
    		p:       pr,
    	}
    }
    
    func (pr *pkgReader) retireReader(r *reader) {
    	pr.RetireDecoder(&r.Decoder)
    }
    
    // @@@ Positions
    
    func (r *reader) pos() token.Pos {
    	r.Sync(pkgbits.SyncPos)
    	if !r.Bool() {
    		return token.NoPos
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

         * @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();
            ClassReader reader = new ClassReader(content);
            ClassWriter classWriter = new ClassWriter(ClassWriter.COMPUTE_MAXS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/runtime/rwmutex.go

    func (rw *rwmutex) unlock() {
    	// Announce to readers that there is no active writer.
    	r := rw.readerCount.Add(rwmutexMaxReaders)
    	if r >= rwmutexMaxReaders {
    		throw("unlock of unlocked rwmutex")
    	}
    	// Unblock blocked readers.
    	lock(&rw.rLock)
    	for rw.readers.ptr() != nil {
    		reader := rw.readers.ptr()
    		rw.readers = reader.schedlink
    		reader.schedlink.set(nil)
    		notewakeup(&reader.park)
    		r -= 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/net/http/transfer.go

    	io.Reader
    	io.WriterTo
    }{}))
    
    // unwrapNopCloser return the underlying reader and true if r is a NopCloser
    // else it return false.
    func unwrapNopCloser(r io.Reader) (underlyingReader io.Reader, isNopCloser bool) {
    	switch reflect.TypeOf(r) {
    	case nopCloserType, nopCloserWriterToType:
    		return reflect.ValueOf(r).Field(0).Interface().(io.Reader), true
    	default:
    		return nil, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/reader-clusterrole.yaml

    {{ $mcsAPIGroup := or .Values.pilot.env.MCS_API_GROUP "multicluster.x-k8s.io" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: istio-reader-clusterrole{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}-{{ .Release.Namespace }}
      labels:
        app: istio-reader
        release: {{ .Release.Name }}
    rules:
      - apiGroups:
          - "config.istio.io"
          - "security.istio.io"
          - "networking.istio.io"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. cluster/addons/metrics-server/resource-reader.yaml

    xin.li <******@****.***> 1716688621 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 26 01:57:01 UTC 2024
    - 988 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java

            addDocument(indexName, client, num);
    
            ESSourceReader reader = new ESSourceReader(client, settings, indexName);
            reader.setScrollSize(1);
            reader.setLimitDocNumPercentage("1%");
            int count = 0;
            Set<String> valueSet = Collections.synchronizedSet(new HashSet<>());
            Map<String, Object> source;
            while ((source = reader.read()) != null) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/compress/bzip2/bit_reader.go

    	"io"
    )
    
    // bitReader wraps an io.Reader and provides the ability to read values,
    // bit-by-bit, from it. Its Read* methods don't return the usual error
    // because the error handling was verbose. Instead, any error is kept and can
    // be checked afterwards.
    type bitReader struct {
    	r    io.ByteReader
    	n    uint64
    	bits uint
    	err  error
    }
    
    // newBitReader returns a new bitReader reading from r. If r is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/io/ioutil/ioutil.go

    // sorted by filename. If an error occurs reading the directory,
    // ReadDir returns no directory entries along with the error.
    //
    // Deprecated: As of Go 1.16, [os.ReadDir] is a more efficient and correct choice:
    // it returns a list of [fs.DirEntry] instead of [fs.FileInfo],
    // and it returns partial results in the case of an error
    // midway through reading a directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top