Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for inState (0.13 sec)

  1. pkg/hbone/dialer.go

    	pr, pw := io.Pipe()
    	r, err := http.NewRequest(http.MethodConnect, url, pr)
    	if err != nil {
    		return fmt.Errorf("new request: %v", err)
    	}
    	r.Host = address
    
    	// Initiate CONNECT.
    	log.Infof("initiate CONNECT to %v via %v", r.Host, url)
    
    	resp, err := d.transport.RoundTrip(r)
    	if err != nil {
    		return fmt.Errorf("round trip: %v", err)
    	}
    	var remoteID string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/MessageInflater.kt

          true,
        )
    
      private val inflaterSource = InflaterSource(deflatedBytes, inflater)
    
      /** Inflates [buffer] in place as described in RFC 7692 section 7.2.2. */
      @Throws(IOException::class)
      fun inflate(buffer: Buffer) {
        require(deflatedBytes.size == 0L)
    
        if (noContextTakeover) {
          inflater.reset()
        }
    
        deflatedBytes.writeAll(buffer)
        deflatedBytes.writeInt(OCTETS_TO_ADD_BEFORE_INFLATION)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	pos += 4
    	ret := make([]string, n)
    	for i := 0; i < n; i++ {
    		ret[i] = sf.d.stringAt(pos)
    		pos += 4
    	}
    	return ret
    }
    
    func (sf *sourceFile) importsOffset() int {
    	pos := sf.pos + sourceFileNumPlusBuildConstraints
    	n := sf.d.intAt(pos)
    	// each build constraint is 1 uint32
    	return pos + 4 + n*4
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/request-forms.md

    # Dados do formulário
    
    Quando você precisar receber campos de formulário ao invés de JSON, você pode usar `Form`.
    
    !!! info "Informação"
        Para usar formulários, primeiro instale <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
        Ex: `pip install python-multipart`.
    
    ## Importe `Form`
    
    Importe `Form` de `fastapi`:
    
    ```Python hl_lines="1"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	MaxRequestBodyBytes int64
    
    	// ShutdownSendRetryAfter dictates when to initiate shutdown of the HTTP
    	// Server during the graceful termination of the apiserver. If true, we wait
    	// for non longrunning requests in flight to be drained and then initiate a
    	// shutdown of the HTTP Server. If false, we initiate a shutdown of the HTTP
    	// Server as soon as ShutdownDelayDuration has elapsed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. tests/integration/security/sds_ingress/ingress_test.go

    						PrivateKey: ingressutil.TLSClientKeyB,
    						Cert:       ingressutil.TLSClientCertB,
    					},
    				},
    				// TC3: Add CRL with revoked client Certificate A to the configuration,
    				// and initiate communication from client A.
    				// Server should respond with the "revoked certificate" error message.
    				{
    					name:       "mtls ingress gateway with CRL-client A",
    					secretName: "testmtlsgateway-secret-with-crl-a",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractService.java

      private volatile StateSnapshot snapshot = new StateSnapshot(NEW);
    
      /** Constructor for use by subclasses. */
      protected AbstractService() {}
    
      /**
       * This method is called by {@link #startAsync} to initiate service startup. The invocation of
       * this method should cause a call to {@link #notifyStarted()}, either during this method's run,
       * or after it has returned. If startup fails, the invocation should cause a call to {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/transport/Transport.java

         */
    
        protected abstract void doConnect() throws Exception;
    
        /* Tear down a connection. If the hard parameter is true, the diconnection
         * procedure should not initiate or wait for any outstanding requests on
         * this transport.
         */
    
        protected abstract void doDisconnect( boolean hard ) throws IOException;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractService.java

      private volatile StateSnapshot snapshot = new StateSnapshot(NEW);
    
      /** Constructor for use by subclasses. */
      protected AbstractService() {}
    
      /**
       * This method is called by {@link #startAsync} to initiate service startup. The invocation of
       * this method should cause a call to {@link #notifyStarted()}, either during this method's run,
       * or after it has returned. If startup fails, the invocation should cause a call to {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. docs/sts/wso2.md

    ```
    
    - Restart the server.
    - Configure an [OAuth service provider](https://docs.wso2.com/display/IS540/Adding+and+Configuring+a+Service+Provider).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top