Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mutable_inputs (0.22 sec)

  1. tensorflow/cc/saved_model/util_test.cc

      EXPECT_EQ(GetWriteVersion(saved_model_proto), "1");
    }
    
    class GetInputValuesTest : public ::testing::Test {
     public:
      GetInputValuesTest() {
        (*sig_.mutable_inputs())["x"].set_name("feed_x");
        (*sig_.mutable_inputs())["y"].set_name("feed_y");
    
        (*sig_.mutable_defaults())["x"] = CreateTensorProto(1);
        (*sig_.mutable_defaults())["y"] = CreateTensorProto("A");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/unbound/UnboundRule.java

        private final ImmutableList<UnboundRuleInput> mutableInputs;
    
        private UnboundRule(String descriptor, ImmutableList<UnboundRuleInput> immutableInputs, ImmutableList<UnboundRuleInput> mutableInputs) {
            this.descriptor = descriptor;
            this.immutableInputs = immutableInputs;
            this.mutableInputs = mutableInputs;
        }
    
        public String getDescriptor() {
            return descriptor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            expect:
            reportForProcessedBinders == reportFor(
                    UnboundRule.descriptor("firstRule")
                            .mutableInput(UnboundRuleInput.type(String).path("path.subject.first")),
                    UnboundRule.descriptor("secondRule")
                            .mutableInput(UnboundRuleInput.type(Number).path("path.subject.second"))
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/report/unbound/UnboundRulesReporterTest.groovy

            when:
            reporter.reportOn([
                    UnboundRule.descriptor("r1")
                            .mutableInput(UnboundRuleInput.type(String).path("parent.p1"))
                            .mutableInput(UnboundRuleInput.type(String).scope("some.scope"))
                            .mutableInput(UnboundRuleInput.type(Integer).bound().path("parent.p3"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

                if (subjectBinding.getPredicate().getState().compareTo(ModelNode.State.Created) > 0) {
                    UnboundRuleInput.Builder inputBuilder = toInputBuilder(subjectBinding);
                    builder.mutableInput(inputBuilder);
                }
    
                for (int i = 0; i < binder.getInputBindings().size(); ++i) {
                    ModelBinding binding = binder.getInputBindings().get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top