Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for Content (0.19 sec)

  1. guava-tests/test/com/google/common/collect/SetsTest.java

       * the set is the same as the ordering of the given contents.
       */
      private static <E> void verifyLinkedHashSetContents(
          LinkedHashSet<E> set, Collection<E> contents) {
        assertEquals(
            "LinkedHashSet should have preserved order for iteration",
            new ArrayList<E>(set),
            new ArrayList<E>(contents));
        verifySetContents(set, contents);
      }
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 49.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

      private final Type runtimeType;
    
      /** Resolver for resolving parameter and field types with {@link #runtimeType} as context. */
      @LazyInit @CheckForNull private transient TypeResolver invariantTypeResolver;
    
      /** Resolver for resolving covariant types with {@link #runtimeType} as context. */
      @LazyInit @CheckForNull private transient TypeResolver covariantTypeResolver;
    
      /**
    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)
  3. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(op_list_buf);
    }
    
    class DummyKernel : public tensorflow::OpKernel {
     public:
      explicit DummyKernel(tensorflow::OpKernelConstruction* context)
          : OpKernel(context) {}
      void Compute(tensorflow::OpKernelContext* context) override {}
    };
    
    // Test we can query kernels
    REGISTER_OP("TestOpWithSingleKernel")
        .Input("a: float")
        .Input("b: float")
        .Output("o: float");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  "resource_api_version": "V3"
                                }
                              }
                            ],
                            "combined_validation_context": {
                              "default_validation_context": {
                                "match_typed_subject_alt_names": [
                                  {
                                    "san_type": "URI",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		}
    	}
    	var expr ast.Expr = getNewIdent(r.Name.Mangle) // default
    	switch r.Context {
    	case ctxCall, ctxCall2:
    		if r.Name.Kind != "func" {
    			if r.Name.Kind == "type" {
    				r.Context = ctxType
    				if r.Name.Type == nil {
    					error_(r.Pos(), "invalid conversion to C.%s: undefined C type '%s'", fixGo(r.Name.Go), r.Name.C)
    				}
    				break
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "resource_api_version": "V3"
                                }
                              }
                            ],
                            "combined_validation_context": {
                              "default_validation_context": {
                                "match_typed_subject_alt_names": [
                                  {
                                    "san_type": "URI",
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// Flushes `*file` and syncs contents to filesystem.
      ///
      /// This call might not block, and when it returns the contents might not have
      /// been fully persisted.
      ///
      /// DEFAULT IMPLEMENTATION: No op.
      void (*flush)(const TF_WritableFile* file, TF_Status* status);
    
      /// Syncs contents of `*file` with the filesystem.
      ///
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportImpl.java

    
        /**
         *
         * @param tf
         * @return a session for the context
         */
        @Override
        public SmbSessionImpl getSmbSession ( CIFSContext tf ) {
            return getSmbSession(tf, null, null);
        }
    
    
        /**
         *
         * @param tf
         *            context to use
         * @return a session for the context
         */
        @Override
        @SuppressWarnings ( "resource" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // second values with fractions must still have non-negative nanos values
      // that count forward in time. Must be from 0 to 999,999,999
      // inclusive. This field may be limited in precision depending on context.
      optional int32 nanos = 2;
    }
    
    // ObjectMeta is metadata that all persisted resources must have, which includes all objects
    // users must create.
    message ObjectMeta {
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                return queryHelper.build(searchRequestType, query, context -> {
                    if (SearchRequestType.ADMIN_SEARCH.equals(searchRequestType)) {
                        context.skipRoleQuery();
                    } else if (similarDocHash != null) {
                        final DocumentHelper documentHelper = ComponentUtil.getDocumentHelper();
                        context.addQuery(boolQuery -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
Back to top