Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for input (0.29 sec)

  1. tensorflow/c/eager/c_api_test.cc

      int num_inputs = TFE_OpGetFlatInputCount(other, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      for (int input_index = 0; input_index < num_inputs; ++input_index) {
        TFE_TensorHandle* input = TFE_OpGetFlatInput(other, input_index, status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
        TFE_OpAddInput(ret, input, status);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Aug 03 20:50:20 GMT 2023
    - 94.6K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * @param input the primary input {@code Future}
       * @param exceptionType the exception type that triggers use of {@code fallback}. The exception
       *     type is matched against the input's exception. "The input's exception" means the cause of
       *     the {@link ExecutionException} thrown by {@code input.get()} or, if {@code get()} throws a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    //   TF_Output concat_dim_input = {...};
    //   TF_AddInput(desc, concat_dim_input);
    //   TF_Output values_inputs[5] = {{...}, ..., {...}};
    //   TF_AddInputList(desc, values_inputs, 5);
    
    // For inputs that take a single tensor.
    TF_CAPI_EXPORT extern void TF_AddInput(TF_OperationDescription* desc,
                                           TF_Output input);
    
    // For inputs that take a list of tensors.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  4. tensorflow/c/c_api_test.cc

        input.flat<tstring>()(i) = example.SerializeAsString();
      }
    
      const tensorflow::string input_op_name(
          tensorflow::ParseTensorName(input_name).first);
      TF_Operation* input_op =
          TF_GraphOperationByName(graph, input_op_name.c_str());
      ASSERT_TRUE(input_op != nullptr);
      Status status;
      csession.SetInputs({{input_op, TF_TensorFromTensor(input, &status)}});
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          }
        }
    
        private fun isDot(input: String): Boolean {
          return input == "." || input.equals("%2e", ignoreCase = true)
        }
    
        private fun isDotDot(input: String): Boolean {
          return input == ".." ||
            input.equals("%2e.", ignoreCase = true) ||
            input.equals(".%2e", ignoreCase = true) ||
            input.equals("%2e%2e", ignoreCase = true)
        }
    
        /**
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  6. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                  "internal_listener": {},
                  "filter_chain_matcher": {
                    "matcher_tree": {
                      "input": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.matching.common_inputs.network.v3.DestinationIPInput"
                        }
                      },
                      "custom_match": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/compare/testdata/configdump.json

                  "internal_listener": {},
                  "filter_chain_matcher": {
                    "matcher_tree": {
                      "input": {
                        "name": "ip",
                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.matching.common_inputs.network.v3.DestinationIPInput"
                        }
                      },
                      "custom_match": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

          Iterator<? extends T>... inputs) {
        for (Iterator<? extends T> input : checkNotNull(inputs)) {
          checkNotNull(input);
        }
        return concat(consumingForArray(inputs));
      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  9. src/bufio/bufio_test.go

    		input[i] = byte(i % 251)
    		if i%101 == 0 {
    			input[i] ^= byte(i / 101)
    		}
    	}
    	return input
    }
    
    func TestReaderWriteTo(t *testing.T) {
    	input := createTestInput(8192)
    	r := NewReader(onlyReader{bytes.NewReader(input)})
    	w := new(bytes.Buffer)
    	if n, err := r.WriteTo(w); err != nil || n != int64(len(input)) {
    		t.Fatalf("r.WriteTo(w) = %d, %v, want %d, nil", n, err, len(input))
    	}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  10. configure.py

      while var is None:
        user_input_origin = get_input(question)
        user_input = user_input_origin.strip().lower()
        if user_input == 'y':
          print(yes_reply)
          var = True
        elif user_input == 'n':
          print(no_reply)
          var = False
        elif not user_input:
          if enabled_by_default:
            print(yes_reply)
            var = True
          else:
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
Back to top