Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for CreateOutput (0.17 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/OutputTest.groovy

            then:
            output == createOutput()
        }
    
        def canWriteToXml() {
            Node rootNode = new Node(null, 'root')
    
            when:
            createOutput().appendNode(rootNode)
    
            then:
            new Output(rootNode.classpathentry[0]) == createOutput()
        }
    
        def equality() {
            Output output = createOutput()
            output.path += 'x'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/model/arg_spec.cc

      } else {
        return ArgSpec(arg_def, ArgType::CreateInput(arg_def), position);
      }
    }
    
    ArgSpec ArgSpec::CreateOutput(const OpDef::ArgDef& arg_def, int position) {
      return ArgSpec(arg_def, ArgType::CreateOutput(arg_def), position);
    }
    
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

            entries.add(createOutput());
            entries.addAll(createSourceFolders());
            entries.addAll(createContainers());
            entries.addAll(createDependencies());
            entries.addAll(createClassFolders());
            return entries.build();
        }
    
        private ClasspathEntry createOutput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/model/arg_type.cc

      return ArgType(arg_def, kInput);
    }
    
    ArgType ArgType::CreateInputRef(const OpDef::ArgDef& arg_def) {
      return ArgType(arg_def, kInputRef);
    }
    
    ArgType ArgType::CreateOutput(const OpDef::ArgDef& arg_def) {
      return ArgType(arg_def, kOutput);
    }
    
    ArgType::ArgType(const OpDef::ArgDef& arg_def, Kind kind)
        : kind_(kind), data_type_(arg_def.type()) {
      if (!arg_def.type_attr().empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                abstract class UntrackedProducer extends DefaultTask {
                    @OutputDirectory
                    abstract DirectoryProperty getOutputDir()
    
                    @TaskAction
                    void createOutput() {
                        outputDir.file("untracked.txt").get().asFile.text = "untracked"
                    }
                }
    
                abstract class TrackedProducer extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/model/arg_spec.h

    class ArgSpec {
     public:
      ArgSpec() = default;
      ArgSpec(const ArgSpec& other) = default;
      static ArgSpec CreateInput(const OpDef::ArgDef& arg_def, int position);
      static ArgSpec CreateOutput(const OpDef::ArgDef& arg_def, int position);
    
      const string& name() const { return name_; }
      const string& description() const { return description_; }
      const ArgType arg_type() const { return arg_type_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/model/arg_type.h

     public:
      ArgType() = default;
      ArgType(const ArgType& other) = default;
      static ArgType CreateInput(const OpDef::ArgDef& arg_def);
      static ArgType CreateInputRef(const OpDef::ArgDef& arg_def);
      static ArgType CreateOutput(const OpDef::ArgDef& arg_def);
    
      const tensorflow::DataType data_type() const { return data_type_; }
      const string type_attr_name() const { return type_attr_name_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/model/op_spec.cc

          }
        } else if (!arg_def.type_list_attr().empty()) {
          inferred_attrs.insert(arg_def.type_list_attr());
        }
      }
      for (const OpDef::ArgDef& arg_def : op_def.output_arg()) {
        ArgSpec arg = ArgSpec::CreateOutput(arg_def, output_args_.size());
        output_args_.push_back(arg);
      }
      // Parse the attributes.
      for (const OpDef::AttrDef& attr_def : op_def.attr()) {
        AttrSpec attr = AttrSpec::Create(attr_def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 01 21:05:56 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope_test.cc

      Scope c = root.WithControlDependencies({c1, c2});
      EXPECT_EQ(c.control_deps().size(), 2);
      Scope c_c = c.WithControlDependencies({Operation()});
      EXPECT_EQ(c_c.control_deps().size(), 3);
    }
    
    TEST(ScopeTest, CreateOutput) {
      Scope root = Scope::NewRootScope();
      Output a = ops::Placeholder(root.WithOpName("a"), DT_FLOAT);
      Output add;
      ASSERT_TRUE(
          CreateOutputWithScope("Add", {a, a}, root.WithOpName("add"), &add).ok());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            then:
            skipped ':compileJava'
        }
    
        def "outputs loaded from the cache are snapshotted as outputs"() {
            buildFile << """
                apply plugin: 'base'
    
                task createOutput {
                    def outputFile = file('build/output.txt')
                    def inputFile = file('input.txt')
                    inputs.file inputFile
                    inputs.file 'unrelated-input.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top