Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for another_cop (0.29 sec)

  1. tensorflow/cc/framework/scope_test.cc

    }
    
    namespace {
    
    string LastOp(const Scope& scope) { return scope.GetUniqueNameForOp("Last"); }
    
    std::vector<string> AnotherCompositeOp(const Scope& scope) {
      auto cop_scopes = scope.GetCompositeOpScopes("another_cop");
      const string c1 = cop_scopes.child.GetUniqueNameForOp("c1");
      const string c2 = cop_scopes.child.GetUniqueNameForOp("mul");
      return {c1, c2, LastOp(cop_scopes.last)};
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(call("{ it.prop }", bean), equalTo((Object) "value2"));
    
            call("{ it.ext.anotherProp = 12 }", bean);
            assertThat(bean.getAsDynamicObject().getProperty("anotherProp"), equalTo((Object) 12));
            assertThat(call("{ it.anotherProp }", bean), equalTo((Object) 12));
        }
    
        @Test
        public void constructorCanCallGetter() throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            buildFile << """
                class BrokenTaskType extends DefaultTask {
                    @Internal final prop = project
                    @Internal final anotherProp = project.configurations
                }
    
                task problems {
                    inputs.property 'brokenProperty', project
                    inputs.property 'otherBrokenProperty', project
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top