Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,820 for ipnets (0.32 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/UnmanagedModelCreationRuleExtractor.java

            private final ModelType<T> type;
            private final List<ModelReference<?>> inputs;
    
            private UnmanagedElementCreationAction(ModelRuleDescriptor descriptor, ModelReference<?> subject, List<ModelReference<?>> inputs, ModelType<T> type) {
                this.subject = subject;
                this.inputs = inputs;
                this.descriptor = descriptor;
                this.type = type;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/cc/tools/freeze_saved_model_test.cc

      std::unordered_set<string> inputs;
      std::unordered_set<string> outputs;
      TF_ASSERT_OK(FreezeSavedModel(saved_model_bundle, &frozen_graph_def, &inputs,
                                    &outputs));
      EXPECT_EQ(expected_inputs, inputs);
      EXPECT_EQ(expected_outputs, outputs);
    }
    
    TEST_F(FreezeTest, InputsAndOutputsMultipleSignatureDefs) {
      // Test that inputs and outputs get correctly merged and populated when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

                    && Objects.equals(inputs, that.inputs);
        }
    
        @Override
        public int hashCode() {
            return Objects.hash(modelId, location, inputs);
        }
    
        Stream<InputSource> sources() {
            return inputs != null ? inputs.stream() : Stream.of(this);
        }
    
        @Override
        public String toString() {
            if (inputs != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

      std::vector<NodeDefBuilder::NodeOut> inputs;
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
      inputs.emplace_back("min", 0, DT_FLOAT);
      inputs.emplace_back("max", 0, DT_FLOAT);
      inputs.emplace_back("histogram", 0, DT_INT64);
    
      const std::string dir = testing::TmpDir();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/MethodBackedModelAction.java

        private final List<ModelReference<?>> inputs;
    
        public MethodBackedModelAction(ModelRuleDescriptor descriptor, ModelReference<T> subject, List<ModelReference<?>> inputs) {
            super(subject, descriptor);
            this.inputs = inputs;
        }
    
        @Override
        public List<? extends ModelReference<?>> getInputs() {
            return inputs;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java

    public class SynonymItem extends DictionaryItem {
        private final String[] inputs;
    
        private final String[] outputs;
    
        private String[] newInputs;
    
        private String[] newOutputs;
    
        public SynonymItem(final long id, final String[] inputs, final String[] outputs) {
            this.id = id;
            this.inputs = inputs;
            this.outputs = outputs;
    
            if (id == 0) {
                // create
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. .github/workflows/release-branch-cherrypick.yml

    jobs:
      cherrypick:
        name: Cherrypick to ${{ github.event.inputs.release_branch}} - ${{ github.event.inputs.git_commit }}
        runs-on: ubuntu-latest
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          with:
            ref: ${{ github.event.inputs.release_branch }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      }
      repeated QuantizationUnit unit = 5;
    
      // Quantization option information for the current unit.
      QuantizationMethod quantization_method = 6;
    
      reserved 1 to 4;
    }
    
    // List of supported opsets to deploy the quantized model.
    // The quantized model contains different set of ops depending on the opset.
    // NEXT ID: 5
    enum OpSet {
      OP_SET_UNSPECIFIED = 0;  // go/do-include-enum-unspecified
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/util_test.cc

      std::vector<std::pair<string, Tensor>> inputs;
      EXPECT_THAT(GetInputValues(sig_, local_request, inputs),
                  StatusIs(absl::StatusCode::kInvalidArgument));
    }
    
    TEST_F(GetInputValuesTest, RequestContainsAllTheInputs) {
      std::vector<std::pair<string, Tensor>> inputs;
      TF_EXPECT_OK(GetInputValues(sig_, request_, inputs));
    
      std::vector<std::pair<string, TensorProto>> exp_inputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/tf_concrete_function_loading_test.cc

    // additional captures should cause an error.
    TEST_F(SavedConcreteFunctionLoadingTest,
           TooManyInputsWithCaptureInSavedConcreteFunction) {
      // `saved` has 3 inputs, and 1 capture, for a total of 4 inputs.
      SavedConcreteFunction saved;
      *saved.mutable_canonicalized_input_signature() =
          testing::ThreeArgInputSignature();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top