Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for secondArg (0.12 sec)

  1. licenses/github.com/hashicorp/errwrap/LICENSE

         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
         such Secondary License(s), so that the recipient of the Larger Work may, at
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

          handshakeCertificates.sslSocketFactory().supportedCipherSuites.toList()
      }
    
      @Test
      fun testDefaultHandshakeCipherSuiteOrderingTls12Restricted() {
        // We are avoiding making guarantees on ordering of secondary Platforms.
        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
        val client = makeClient(ConnectionSpec.RESTRICTED_TLS, TlsVersion.TLS_1_2)
    
        val handshake = makeRequest(client)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/go-version/LICENSE

         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
         such Secondary License(s), so that the recipient of the Larger Work may, at
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         the Covered Software. If the Larger Work is a combination of Covered
         Software with a work governed by one or more Secondary Licenses, and the
         Covered Software is not Incompatible With Secondary Licenses, this
         License permits You to additionally distribute such Covered Software
         under the terms of such Secondary License(s), so that the recipient of
         the Larger Work may, at their option, further distribute the Covered
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. src/net/listen_test.go

    			if err == nil {
    				ln2.Close()
    			}
    			if secondErr = checkDualStackSecondListener(tt.network2, tt.address2, err, tt.xerr); secondErr != nil {
    				ln1.Close()
    				continue
    			}
    			ln1.Close()
    			break
    		}
    		if firstErr != nil {
    			t.Error(firstErr)
    		}
    		if secondErr != nil {
    			t.Error(secondErr)
    		}
    	}
    }
    
    var dualStackUDPListenerTests = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

      the copyright license set forth in this Agreement.
    
      e) Notwithstanding the terms of any Secondary License, no
      Contributor makes additional grants to any Recipient (other than
      those set forth in this Agreement) as a result of such Recipient's
      receipt of the Program under the terms of a Secondary License
      (if permitted under the terms of Section 3).
    
    3. REQUIREMENTS
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/validation_test.go

    		},
    		{
    			name:         "only secondary service cidr",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("", "10.0.0.0/16"),
    		},
    		{
    			name:         "primary and secondary are provided but not dual stack v4-v4",
    			expectErrors: true,
    			options:      makeOptionsWithCIDRs("10.0.0.0/16", "11.0.0.0/16"),
    		},
    		{
    			name:         "primary and secondary are provided but not dual stack v6-v6",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
        this.comparators =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

         */
        String getArtifactName();
    
        /**
         * The class of the transform action.
         */
        Class<?> getTransformActionClass();
    
        /**
         * The combined input hash of the secondary inputs.
         * <p>
         * The secondary inputs are the implementation of the transform action and
         * the combined input hash of the parameters of the transform action.
         */
        byte[] getSecondaryInputValueHashBytes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
        this.comparators =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top