Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for _elevate (0.15 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

        private final NavigableMap<K, ? extends V> delegate;
    
        UnmodifiableNavigableMap(NavigableMap<K, ? extends V> delegate) {
          this.delegate = delegate;
        }
    
        UnmodifiableNavigableMap(
            NavigableMap<K, ? extends V> delegate, UnmodifiableNavigableMap<K, V> descendingMap) {
          this.delegate = delegate;
          this.descendingMap = descendingMap;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

        private final NavigableMap<K, ? extends V> delegate;
    
        UnmodifiableNavigableMap(NavigableMap<K, ? extends V> delegate) {
          this.delegate = delegate;
        }
    
        UnmodifiableNavigableMap(
            NavigableMap<K, ? extends V> delegate, UnmodifiableNavigableMap<K, V> descendingMap) {
          this.delegate = delegate;
          this.descendingMap = descendingMap;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      // TODO(cpovirk): top-level class?
      static class ExecutorSpy implements Executor {
    
        Executor delegate;
        boolean wasExecuted;
    
        public ExecutorSpy(Executor delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void execute(Runnable command) {
          delegate.execute(command);
          wasExecuted = true;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      }
    
      // TODO(cpovirk): top-level class?
      static class ExecutorSpy implements Executor {
    
        Executor delegate;
        boolean wasExecuted;
    
        public ExecutorSpy(Executor delegate) {
          this.delegate = delegate;
        }
    
        @Override
        public void execute(Runnable command) {
          delegate.execute(command);
          wasExecuted = true;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    			// This must be delegate - enforce delegate validations.
    			if len(virtualService.Gateways) != 0 {
    				// meaningless to specify gateways in delegate
    				errs = AppendValidation(errs, fmt.Errorf("delegate virtual service must have no gateways specified"))
    			}
    			if len(virtualService.Tls) != 0 {
    				// meaningless to specify tls in delegate, we do not support tls delegate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Failed to download the Elevate file. */
        public static final String ERRORS_failed_to_download_elevate_file = "{errors.failed_to_download_elevate_file}";
    
        /** The key of the message: Failed to upload the Elevate file. */
        public static final String ERRORS_failed_to_upload_elevate_file = "{errors.failed_to_upload_elevate_file}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

          in.defaultReadObject();
          CacheBuilder<K, V> builder = recreateCacheBuilder();
          this.delegate = builder.build();
        }
    
        private Object readResolve() {
          return delegate;
        }
    
        @Override
        protected Cache<K, V> delegate() {
          return delegate;
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

          in.defaultReadObject();
          CacheBuilder<K, V> builder = recreateCacheBuilder();
          this.delegate = builder.build();
        }
    
        private Object readResolve() {
          return delegate;
        }
    
        @Override
        protected Cache<K, V> delegate() {
          return delegate;
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Specifies how long the results of a preflight request can be cached. type: string type: object delegate: description: Delegate is used to specify the particular VirtualService which can be used to define delegate HTTPRoute. properties: name: description: Name specifies the name of the delegate VirtualService. type: string namespace: description: Namespace specifies the namespace where the delegate VirtualService resides. type: string type: object directResponse: description: A HTTP rule can either...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            .newCall(Request(url))
        }
      }
    
      private class RecordingTrustManager(private val delegate: X509TrustManager) : X509TrustManager {
        val calls: MutableList<String> = ArrayList()
    
        override fun getAcceptedIssuers(): Array<X509Certificate> = delegate.acceptedIssuers
    
        override fun checkClientTrusted(
          chain: Array<X509Certificate>,
          authType: String,
        ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top