Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 700 for readImg (0.24 sec)

  1. src/net/unixsock.go

    // This implements the [syscall.Conn] interface.
    func (c *UnixConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // CloseRead shuts down the reading side of the Unix domain connection.
    // Most callers should just use Close.
    func (c *UnixConn) CloseRead() error {
    	if !c.ok() {
    		return syscall.EINVAL
    	}
    	if err := c.fd.closeRead(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// flushed, they end up on the full queue for trace.gen%2.
    	//
    	// The trace reader takes buffers off the full list one-by-one and
    	// places them into reading until they're finished being read from.
    	// Then they're placed onto the empty list.
    	//
    	// Protected by trace.lock.
    	reading       *traceBuf // buffer currently handed off to user
    	empty         *traceBuf // stack of empty buffers
    	full          [2]traceBufQueue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/net/http/response.go

    	// Close records whether the header directed that the connection be
    	// closed after reading Body. The value is advice for clients: neither
    	// ReadResponse nor Response.Write ever closes a connection.
    	Close bool
    
    	// Uncompressed reports whether the response was sent compressed but
    	// was decompressed by the http package. When true, reading from
    	// Body yields the uncompressed content instead of the compressed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    	wantCode int
    	wantMsg  string
    }
    
    var readResponseTests = []readResponseTest{
    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply\nRead the file README.txt,\n please",
    	},
    
    	{"230 Anonymous access granted, restrictions apply\n",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply",
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                            final String reading = readingList.get(readingCount);
                            if (i + 1 == queries.length && prefixQuery) {
                                readingQueryBuilder.should(QueryBuilders.prefixQuery(fieldName, reading));
                            } else {
                                readingQueryBuilder.should(QueryBuilders.termQuery(fieldName, reading));
                            }
                        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    		return nil, fmt.Errorf("error reading magic number from %s: %v", name, err)
    	}
    
    	elfMagic := string(header[:])
    
    	// Match against supported file types.
    	if elfMagic == elf.ELFMAG {
    		f, err := b.openELF(name, start, limit, offset, relocationSymbol)
    		if err != nil {
    			return nil, fmt.Errorf("error reading ELF file %s: %v", name, err)
    		}
    		return f, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

                        && !line.contains(" default target ")) {
                        return line;
                    }
                }
            } catch (IOException e) {
                // Should not happen reading from a StringReader
                throw new UncheckedIOException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. pkg/wasm/imagefetcher.go

    // Resolve an image reference to a credential.
    // The function code is borrowed from https://github.com/google/go-containerregistry/blob/v0.8.0/pkg/authn/keychain.go#L65,
    // by making it take dockerconfigjson directly as bytes instead of reading from files.
    func (k *wasmKeyChain) Resolve(target authn.Resource) (authn.Authenticator, error) {
    	if bytes.Equal(k.data, []byte("null")) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. 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)
  10. src/net/http/fcgi/fcgi_test.go

    	var rec record
    outer:
    	for _, test := range streamTests {
    		buf := bytes.NewBuffer(test.raw)
    		var content []byte
    		for buf.Len() > 0 {
    			if err := rec.read(buf); err != nil {
    				t.Errorf("%s: error reading record: %v", test.desc, err)
    				continue outer
    			}
    			content = append(content, rec.content()...)
    		}
    		if rec.h.Type != test.recType {
    			t.Errorf("%s: got type %d expected %d", test.desc, rec.h.Type, test.recType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top