Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for IsComposite (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.cc

    void ResourceConstructingOps::print(raw_ostream &os) const {
      llvm::interleaveComma(ops, os << "[");
      os << "]";
    }
    
    IsComposite::IsComposite(Operation *op) {}
    
    IsComposite IsComposite::EntryState(MLIRContext *context) {
      return IsComposite();
    }
    
    IsComposite IsComposite::EntryState(Value value) {
      IsComposite result;
      if (auto barg = mlir::dyn_cast<BlockArgument>(value)) {
        if (func::FuncOp func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

    };
    
    struct IsComposite {
      explicit IsComposite(Operation *op = nullptr);
      static IsComposite EntryState(MLIRContext *context);
      static IsComposite EntryState(Value value);
      bool operator==(const IsComposite &rhs) const {
        return is_on_composite_device == rhs.is_on_composite_device;
      }
    
      static IsComposite join(const IsComposite &lhs, const IsComposite &rhs);
      void print(raw_ostream &os) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessorTest.groovy

            then:
            1 * target.started(test, testStartEvent)
        }
    
        TestDescriptorInternal test(String id) {
            [isComposite: {false}, getId: {id}, toString: {id}] as TestDescriptorInternal
        }
    
        TestDescriptorInternal suite(String id) {
            [isComposite: {true}, getId: {id}, toString: {id}] as TestDescriptorInternal
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessor.java

            this.processor = processor;
        }
    
        @Override
        public void started(TestDescriptorInternal test, TestStartEvent event) {
            if (rootId == null) {
                assert test.isComposite();
                rootId = test.getId();
            } else if (event.getParentId() == null) {
                event = event.withParentId(rootId);
            }
            processor.started(test, event);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestSuiteDescriptor.java

            super(id, name);
        }
    
        @Override
        public String toString() {
            return "Test suite '"+ getName() + "'";
        }
    
        @Override
        public boolean isComposite() {
            return true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestDescriptor.java

            this.displayName = displayName;
        }
    
        @Override
        public String toString() {
            return "Test " + getName() + "(" + className + ")";
        }
    
        @Override
        public boolean isComposite() {
            return false;
        }
    
        @Override
        public String getClassName() {
            return className;
        }
    
        @Override
        public String getMethodName() {
            return getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestDescriptor.java

        @Nullable
        @UsedByScanPlugin("test-retry")
        String getClassName();
    
        /**
         * Is this test a composite test?
         *
         * @return true if this test is a composite test.
         */
        boolean isComposite();
    
        /**
         * Returns the parent of this test, if any.
         *
         * @return The parent of this test. Null if this test has no parent.
         */
        @Nullable
        TestDescriptor getParent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

        def setup() {
            _ * suiteDescriptor.getId() >> 'id'
            _ * suiteDescriptor.toString() >> '<suite>'
            _ * suiteDescriptor.isComposite() >> true
            _ * testClass.getTestClassName() >> '<class-name>'
        }
    
        def firesSuiteStartEventOnStartProcessing() {
            when:
            processor.startProcessing(resultProcessor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

            TestDescriptor testDescriptor = details.getTestDescriptor();
            return testDescriptor.isComposite() ? toTestDescriptorForSuite(buildOperation.getId(), parent, testDescriptor) : toTestDescriptorForTest(buildOperation.getId(), parent, testDescriptor);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top