Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for secondary (1.43 sec)

  1. 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
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 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)
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  3. 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 =
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. 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 =
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                return secondary;
              }
            };
        assertTrue(transformAsync(immediate, function, directExecutor()).cancel(true));
        assertTrue(secondary.isCancelled());
        assertTrue(secondary.wasInterrupted());
      }
    
      public void testTransformAsync_inputCancelButNotInterruptPropagatesToOutput() throws Exception {
        SettableFuture<Foo> f1 = SettableFuture.create();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

                return secondary;
              }
            };
        assertTrue(transformAsync(immediate, function, directExecutor()).cancel(true));
        assertTrue(secondary.isCancelled());
        assertTrue(secondary.wasInterrupted());
      }
    
      public void testTransformAsync_inputCancelButNotInterruptPropagatesToOutput() throws Exception {
        SettableFuture<Foo> f1 = SettableFuture.create();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Table.java

       * returned by {@link #row}. Those maps may support {@code setValue()}, {@code put()}, and {@code
       * putAll()}.
       *
       * @return a map view from each row key to a secondary map from column keys to values
       */
      Map<R, Map<C, V>> rowMap();
    
      /**
       * Returns a view that associates each column key with the corresponding map from row keys to
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/storage/admin_storage.jsp

                                                    <div class="modal-footer justify-content-between">
                                                        <button type="button" class="btn btn-outline-secondary"
                                                                data-dismiss="modal">
                                                            <la:message key="labels.crud_button_cancel"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 20.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/events/v1/generated.proto

      // it acts on some changes in a ReplicaSet object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference regarding = 8;
    
      // related is the optional secondary object for more complex actions. E.g. when regarding object triggers
      // a creation or deletion of related object.
      // +optional
      optional k8s.io.api.core.v1.ObjectReference related = 9;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    However, this has one glaring issue: how do we get the traffic to the remote proxies, while maintaining the zero-trust properties that Istio is built upon?
    
    A secondary goal was to enable a smoother on-ramp from "Zero" to "Getting some value".
    Historically, Istio had to really be consumed all-or-nothing for things to work as expected.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
Back to top