Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for t_in (0.17 sec)

  1. tensorflow/c/c_api_test.cc

      auto deallocator = [](void* data, size_t len, void* arg) {};
      unique_tensor_ptr t_in(TF_NewTensor(TF_STRING, nullptr, 0, &tstr[0],
                                          sizeof(tstr), deallocator, nullptr),
                             TF_DeleteTensor);
    
      // Create a TF_Operation with the attribute t_in
      auto desc = init("tensor");
      TF_SetAttrTensor(desc, "v", t_in.get(), s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	for _, tt := range RunesTests {
    		tin := []byte(tt.in)
    		a := Runes(tin)
    		if !runesEqual(a, tt.out) {
    			t.Errorf("Runes(%q) = %v; want %v", tin, a, tt.out)
    			continue
    		}
    		if !tt.lossy {
    			// can only test reassembly if we didn't lose information
    			s := string(a)
    			if s != tt.in {
    				t.Errorf("string(Runes(%q)) = %x; want %x", tin, s, tin)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

            display: grid;
            grid-template-columns: 1fr;
        }
    }
    .summary-table > div, .details-table > div {
        text-align:left;
        padding: 8px 3px 3px 7px;
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .col-first, .col-second, .col-last, .col-constructor-name, .col-summary-item-name {
        vertical-align:top;
        padding-right:0;
        padding-top:8px;
        padding-bottom:3px;
    }
    .table-header {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                'org:annotations:2.9.0'()
                'org:annotations:2.9.4'()
    
                // define "real" platforms, as published modules.
                // The platforms are supposed to declare _in extenso_ what modules
                // they include, by constraints
                'org:platform' {
                    '2.7.9' {
                        asPlatform()
                        constraint("org:databind:2.7.9")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        // op.
        BoolAttr:$is_stateless
      );
    
      let results = (outs
        Variadic<TF_Tensor>:$output
      );
    
      TF_DerivedOperandTypeListAttr Tin = TF_DerivedOperandTypeListAttr<1>;
      TF_DerivedResultTypeListAttr Tout = TF_DerivedResultTypeListAttr<0>;
      TF_DerivedResultShapeListAttr output_shapes = TF_DerivedResultShapeListAttr<0>;
    
      let hasCanonicalizer = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

        Collections.addAll(set, elements);
        return set;
      }
    
      /**
       * Creates a <i>mutable</i> {@code HashSet} instance containing the given elements. A very thin
       * convenience for creating an empty set then calling {@link Collection#addAll} or {@link
       * Iterables#addAll}.
       *
       * <p><b>Note:</b> if mutability is not required and the elements are non-null, use {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

                              builder.opts().op_registry());
        NameAttrList b_name_attr;
        b_name_attr.set_name("Supported");
        b_builder.Attr("f", b_name_attr);
        b_builder.Attr("Tin", {DT_FLOAT, DT_FLOAT});
        b_builder.Attr("Tout", {DT_FLOAT});
        b_builder.Input({a, a});
        Node* b = builder.opts().FinalizeBuilder(&b_builder);
    
        Node* c = ops::UnaryOp("Relu", b, builder.opts().WithName("C"));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

        Collections.addAll(set, elements);
        return set;
      }
    
      /**
       * Creates a <i>mutable</i> {@code HashSet} instance containing the given elements. A very thin
       * convenience for creating an empty set then calling {@link Collection#addAll} or {@link
       * Iterables#addAll}.
       *
       * <p><b>Note:</b> if mutability is not required and the elements are non-null, use {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // figure space
        assertThat(parse("http://h/\u2007").encodedPath).isEqualTo("/%E2%80%87")
        // punctuation space
        assertThat(parse("http://h/\u2008").encodedPath).isEqualTo("/%E2%80%88")
        // thin space
        assertThat(parse("http://h/\u2009").encodedPath).isEqualTo("/%E2%80%89")
        // hair space
        assertThat(parse("http://h/\u200a").encodedPath).isEqualTo("/%E2%80%8A")
        // zero-width space
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    /** Remove the gray background color from active links in IE 10. */
    a {
    	background: transparent;
    }
    
    /** Address `outline` inconsistency between Chrome and other browsers. */
    a:focus {
    	outline: thin dotted;
    }
    
    /** Improve readability when focused and also mouse hovered in all browsers. */
    a:active,
    a:hover {
    	outline: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top