Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for interfaces (0.26 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            interfaceMap);
      }
    
      private interface Interface1 {}
    
      private interface Interface2 {}
    
      private interface Interface3<T> extends Iterable<T> {}
    
      private interface Interface12 extends Interface1, Interface2 {}
    
      private static class Class1 implements Interface1 {}
    
      private static final class NoInterface {}
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            interfaceMap);
      }
    
      private interface Interface1 {}
    
      private interface Interface2 {}
    
      private interface Interface3<T> extends Iterable<T> {}
    
      private interface Interface12 extends Interface1, Interface2 {}
    
      private static class Class1 implements Interface1 {}
    
      private static final class NoInterface {}
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

          ImmutableSet<TypeToken<? super T>> result = interfaces;
          if (result == null) {
            return (interfaces =
                FluentIterable.from(allTypes).filter(TypeFilter.INTERFACE_ONLY).toSet());
          } else {
            return result;
          }
        }
    
        @Override
        public TypeSet interfaces() {
          return this;
        }
    
        @Override
        public Set<Class<? super T>> rawTypes() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

                properties:
                  interfaces:
                    description: A list of interfaces to announce from. The LB IP will
                      be announced only from these interfaces. If the field is not set,
                      we advertise from all the interfaces on the host.
                    items:
                      type: string
                    type: array
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // discover the API at /api, which is the root path of the legacy v1 API.
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message APIVersions {
      // versions are the api versions that are available.
      repeated string versions = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/CacheBuilder.java

     * loading), and fewer <a
     * href="https://github.com/google/guava/issues?q=is%3Aopen+is%3Aissue+label%3Apackage%3Dcache+label%3Atype%3Ddefect">bugs</a>.
     *
     * <p>Caffeine defines its own interfaces (<a
     * href="https://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine/latest/com.github.benmanes.caffeine/com/github/benmanes/caffeine/cache/Cache.html">{@code
     * Cache}</a>, <a
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        inconsistent and awkward to explore.
    
     *  **OkHttpClient now implements the new `Call.Factory` interface.** This
        interface will make your code easier to test. When you test code that makes
        HTTP requests, you can use this interface to replace the real `OkHttpClient`
        with your own mocks or fakes.
    
        The interface will also let you use OkHttp's API with another HTTP client's
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/filesystem_interface.h

    limitations under the License.
    ==============================================================================*/
    #ifndef TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_FILESYSTEM_INTERFACE_H_
    #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_FILESYSTEM_INTERFACE_H_
    
    #include <stddef.h>
    #include <stdint.h>
    
    #include "tensorflow/c/tf_file_statistics.h"
    #include "tensorflow/c/tf_status.h"
    
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  9. tests/query_test.go

    	}
    
    	DB.Create(&users)
    
    	var user User
    	DB.First(&user, map[string]interface{}{"name": users[0].Name})
    	CheckUser(t, user, users[0])
    
    	user = User{}
    	DB.Where(map[string]interface{}{"name": users[1].Name}).First(&user)
    	CheckUser(t, user, users[1])
    
    	var results []User
    	DB.Where(map[string]interface{}{"name": users[2].Name}).Find(&results)
    	if len(results) != 1 {
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Fri Mar 15 06:14:48 GMT 2024
    - 49.4K bytes
    - Viewed (0)
  10. okhttp/api/okhttp.api

    	public final fun url ()Lokhttp3/HttpUrl;
    }
    
    public abstract interface class okhttp3/AsyncDns {
    	public static final field Companion Lokhttp3/AsyncDns$Companion;
    	public static final field TYPE_A I
    	public static final field TYPE_AAAA I
    	public abstract fun query (Ljava/lang/String;Lokhttp3/AsyncDns$Callback;)V
    }
    
    public abstract interface class okhttp3/AsyncDns$Callback {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
Back to top