Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for debugTree (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationsFixture.groovy

        void none(Pattern displayName) {
            getTree().none(displayName)
        }
    
        @Override
        void debugTree(
            Spec<? super BuildOperationRecord> predicate = Specs.SATISFIES_ALL,
            Spec<? super BuildOperationRecord> progressPredicate = Specs.SATISFIES_ALL
        ) {
            getTree().debugTree(predicate, progressPredicate)
        }
    
        private BuildOperationTreeFixture getTree() {
            if (tree == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

            return parents
        }
    
        @Override
        void none(Pattern displayName) {
            def records = all(displayName)
            assert records.size() == 0
        }
    
        @Override
        void debugTree(
            Spec<? super BuildOperationRecord> predicate = Specs.SATISFIES_ALL,
            Spec<? super BuildOperationRecord> progressPredicate = Specs.SATISFIES_ALL
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

                    concurrentOperations << candidate
                }
            }
            return concurrentOperations
        }
    
        abstract void debugTree(
            Spec<? super BuildOperationRecord> predicate = Specs.SATISFIES_ALL,
            Spec<? super BuildOperationRecord> progressPredicate = Specs.SATISFIES_ALL
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        private void run() {
            def args = initFile.exists() ? ['-I', initFile.name, 'help'] : ['help']
            succeeds(*args)
    
            // useful for inspecting ops when things go wrong
            operations.debugTree({ op -> !op.hasDetailsOfType(RegisterTaskBuildOperationType.Details) })
    
            // verify that we don't get any duplicates in these
            sanityCheckApplicationIds()
    
            if (notEmpty(initFile)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. .idea/dictionaries/yan.xml

    <component name="ProjectDictionaryState">
      <dictionary name="yan">
        <words>
          <w>barebone</w>
          <w>debuggee</w>
          <w>deserializes</w>
          <w>destructured</w>
          <w>hacky</w>
          <w>impls</w>
          <w>inlined</w>
          <w>kapt</w>
          <w>kotlinc</w>
          <w>mutators</w>
          <w>parcelable</w>
          <w>parceler</w>
          <w>parcelers</w>
          <w>parcelize</w>
          <w>repl</w>
          <w>testdata</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 20 16:41:23 UTC 2021
    - 547 bytes
    - Viewed (0)
Back to top