Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 714 for owns (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http/ExchangeCodec.kt

    import okhttp3.internal.connection.RealCall
    import okio.Sink
    import okio.Source
    
    /** Encodes HTTP requests and decodes HTTP responses. */
    interface ExchangeCodec {
      /** The connection or CONNECT tunnel that owns this codec. */
      val carrier: Carrier
    
      /** Returns an output stream where the request body can be streamed. */
      @Throws(IOException::class)
      fun createRequestBody(
        request: Request,
        contentLength: Long,
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/errwrap/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/hcl/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-multierror/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

    Copyright (c) 2014 HashiCorp, Inc.
    
    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. "Contributor"
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. "Contributor Version"
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor's Contribution.
    
    1.3. "Contribution"
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  6. cmd/erasure.go

    			bucketCh <- b
    		}
    	}
    	xioutil.SafeClose(bucketCh)
    
    	bucketResults := make(chan dataUsageEntryInfo, len(disks))
    
    	// Start async collector/saver.
    	// This goroutine owns the cache.
    	var saverWg sync.WaitGroup
    	saverWg.Add(1)
    	go func() {
    		// Add jitter to the update time so multiple sets don't sync up.
    		updateTime := 30*time.Second + time.Duration(float64(10*time.Second)*rand.Float64())
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 15 10:02:39 GMT 2024
    - 16K bytes
    - Viewed (1)
  7. licenses/github.com/hashicorp/go-version/LICENSE

    Mozilla Public License, version 2.0
    
    1. Definitions
    
    1.1. “Contributor”
    
         means each individual or legal entity that creates, contributes to the
         creation of, or owns Covered Software.
    
    1.2. “Contributor Version”
    
         means the combination of the Contributions of others (if any) used by a
         Contributor and that particular Contributor’s Contribution.
    
    1.3. “Contribution”
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Invokable.java

     * the case. However, most methods from those types are present with the same signature in this
     * class.
     *
     * @param <T> the type that owns this method or constructor.
     * @param <R> the return type of (or supertype thereof) the method or the declaring type of the
     *     constructor.
     * @author Ben Yu
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/https.md

    The **TLS certificates** are **associated with a domain name**, not with an IP address.
    
    So, to renew the certificates, the renewal program needs to **prove** to the authority (Let's Encrypt) that it indeed **"owns" and controls that domain**.
    
    To do that, and to accommodate different application needs, there are several ways it can do it. Some popular ways are:
    
    * **Modify some DNS records**.
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_experimental.h

    // library are platform-specific and are not documented here.
    //
    // On success, returns the newly created library handle and places OK in status.
    // The caller owns the library handle.
    //
    // On failure, returns nullptr and places an error status in status.
    TF_CAPI_EXPORT extern TF_Library* TF_LoadPluggableDeviceLibrary(
        const char* library_filename, TF_Status* status);
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Apr 27 21:07:00 GMT 2023
    - 15.1K bytes
    - Viewed (0)
Back to top