Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 463 for ACCEPT (0.15 sec)

  1. docs/logging/README.md

        "X-Amz-Decoded-Content-Length": "228"
      },
      "responseHeader": {
        "Accept-Ranges": "bytes",
        "Content-Length": "0",
        "ETag": "9fe7a344ef4227d3e53751e9d88ce41e",
        "Server": "MinIO",
        "Strict-Transport-Security": "max-age=31536000; includeSubDomains",
        "Vary": "Origin,Accept-Encoding",
        "X-Amz-Id-2": "dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/net/unixsock.go

    	if !l.ok() {
    		return nil, syscall.EINVAL
    	}
    	c, err := l.accept()
    	if err != nil {
    		return nil, &OpError{Op: "accept", Net: l.fd.net, Source: nil, Addr: l.fd.laddr, Err: err}
    	}
    	return c, nil
    }
    
    // Accept implements the Accept method in the [Listener] interface.
    // Returned connections will be of type [*UnixConn].
    func (l *UnixListener) Accept() (Conn, error) {
    	if !l.ok() {
    		return nil, syscall.EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Accept} header field name. */
      public static final String ACCEPT = "Accept";
      /** The HTTP {@code Accept-Charset} header field name. */
      public static final String ACCEPT_CHARSET = "Accept-Charset";
      /** The HTTP {@code Accept-Encoding} header field name. */
      public static final String ACCEPT_ENCODING = "Accept-Encoding";
      /** The HTTP {@code Accept-Language} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  4. src/net/sendfile_test.go

    	defer w.Close()
    	defer r.Close()
    
    	copied := make(chan bool)
    
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		// Accept a connection and copy 1 byte from the read end of
    		// the pipe to the connection. This will call into sendfile.
    		defer wg.Done()
    		conn, err := ln.Accept()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		defer conn.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Accept} header field name. */
      public static final String ACCEPT = "Accept";
      /** The HTTP {@code Accept-Charset} header field name. */
      public static final String ACCEPT_CHARSET = "Accept-Charset";
      /** The HTTP {@code Accept-Encoding} header field name. */
      public static final String ACCEPT_ENCODING = "Accept-Encoding";
      /** The HTTP {@code Accept-Language} header field name. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  6. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdater.java

                    String previousWatchedRoot = watchedDirectoryForSnapshot.remove(snapshot.getAbsolutePath());
                    decrement(previousWatchedRoot, changedWatchedDirectories);
                    snapshot.accept(new SubdirectoriesToWatchVisitor(path -> decrement(path, changedWatchedDirectories)));
                });
            addedSnapshots.stream()
                .filter(watchableHierarchies::shouldWatch)
                .forEach(snapshot -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 04:59:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. src/net/timeout_test.go

    				afterDial = time.Now()
    
    				if err != nil {
    					break
    				}
    
    				// Even though we're not calling Accept on the Listener, the kernel may
    				// spuriously accept connections on its behalf. If that happens, we will
    				// close the connection (to try to get it out of the kernel's accept
    				// queue) and try a shorter timeout.
    				//
    				// We assume that we will reach a point where the call actually does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. cmd/post-policy_test.go

    	// Add the bucket condition, only accept buckets equal to the one passed.
    	bucketConditionStr := fmt.Sprintf(`["eq", "$bucket", "%s"]`, bucketName)
    	// Add the key condition, only accept keys equal to the one passed.
    	keyConditionStr := fmt.Sprintf(`["eq", "$key", "%s/upload.txt"]`, objectKey)
    	// Add content length condition, only accept content sizes of a given length.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Streams.java

        if (streamA.isParallel() || streamB.isParallel()) {
          zip(streamA, streamB, TemporaryPair::new).forEach(pair -> consumer.accept(pair.a, pair.b));
        } else {
          Iterator<A> iterA = streamA.iterator();
          Iterator<B> iterB = streamB.iterator();
          while (iterA.hasNext() && iterB.hasNext()) {
            consumer.accept(iterA.next(), iterB.next());
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. src/net/rpc/server.go

    	}
    	return
    }
    
    // Accept accepts connections on the listener and serves requests
    // for each incoming connection. Accept blocks until the listener
    // returns a non-nil error. The caller typically invokes Accept in a
    // go statement.
    func (server *Server) Accept(lis net.Listener) {
    	for {
    		conn, err := lis.Accept()
    		if err != nil {
    			log.Print("rpc.Serve: accept:", err.Error())
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top