Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 320 for realizes (0.2 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/comparison/PotentialMatchTest.groovy

            def expectedContextMsg = PotentialMatch.HEADER + '\n' + contextBody.join('\n')
    
            then:
            def actualContextMsg = pm.buildContext(2)
            actualContextMsg.readLines() == expectedContextMsg.readLines()
    
            where:
            expectedLines           | actualLines                               | matchBegins    || contextBody
    
            // Single Mismatches
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/ReadelfBinaryInfoTest.groovy

        51: 0000000000000000     0 NOTYPE  WEAK   DEFAULT  UND __gmon_start__
        52: 0000000000401090     0 FUNC    GLOBAL DEFAULT  UND _ZNSt8ios_base4I[...]
    """
            def inputLines = input.readLines()
            def symbols = ReadelfBinaryInfo.readSymbols(inputLines)
    
            then:
            symbols.size() == 4
            symbols*.name.containsAll(['multiply.cpp', 'sum.cpp', 'greeter.cpp', 'main.cpp'])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:09:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/CharStreams.java

       * Files#readLines} and {@link Resources#readLines} methods.
       *
       * @param r the object to read from
       * @return a mutable {@link List} containing all the lines
       * @throws IOException if an I/O error occurs
       */
      public static List<String> readLines(Readable r) throws IOException {
        List<String> result = new ArrayList<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/DefaultImportsReader.java

            if (url == null) {
                throw new IllegalStateException("Could not load default imports resource: " + RESOURCE);
            }
            return Resources.asCharSource(url, Charsets.UTF_8).readLines(new LineProcessor<String[]>() {
                private final List<String> packages = new LinkedList<>();
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    // Create a pass that legalizes MHLO to TF dialect.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeHloToTfPass();
    
    // Creates a pass which replaces a splat constant tensor with a BroadcastInDim
    // op.
    std::unique_ptr<OperationPass<ModuleOp>> CreateUnfoldSplatConstantPass();
    
    // Create a pass that legalizes MHLO to TFLite dialect.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/passes.h

        std::optional<StringRef> tf2xla_fallback_device_type = std::nullopt,
        bool prefer_tf2xla = false);
    
    // Legalizes TF/XLA communication ops (TF dialect) to HLO dialect communication
    // ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTFCommunicationPass();
    
    // Legalizes TF/XLA collective ops (TF dialect) to HLO dialect collective
    // ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateLegalizeTFCollectivePass();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            // Configure task through suite
            testing {
                suites {
                    test {
                        useJUnitJupiter()
                        targets.all {
                            // explicitly realize the task now to cause this configuration to run now
                            testTask.get().configure {
                                options {
                                    includeTags 'fast'
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. platforms/software/test-suites-base/src/test/groovy/org/gradle/testing/base/plugins/TestingModelBasePluginTest.groovy

            dsl {
                apply plugin: TestingModelBasePlugin
                model {
                    baseComponent(TestSuiteSpec) {
                    }
                }
            }
    
            then:
            realize("baseComponent") instanceof TestSuiteSpec
        }
    
        def "adds a 'testSuites' container to the project model"() {
            when:
            dsl {
                apply plugin: TestingModelBasePlugin
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/platform/base/PlatformBaseSpecification.groovy

        TestNameTestDirectoryProvider testDir = new TestNameTestDirectoryProvider(getClass())
    
        final def project = TestUtil.create(testDir).rootProject()
        @Rule SetRuleContext setContext = new SetRuleContext()
    
        def realize(String name) {
            project.modelRegistry.find(name, ModelType.UNTYPED)
        }
    
        ModelMap<Task> realizeTasks() {
            project.modelRegistry.find("tasks", ModelTypes.modelMap(Task))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/ReleaseFeaturesTest.groovy

            def featuresFile = ReleaseFeaturesTest.getClassLoader().getResourceAsStream("release-features.txt")
    
            when:
            def featuresText = featuresFile.text
    
            then:
            def lines = featuresText.readLines()
            lines.size() <= 10
            lines.every { it.startsWith(" - ") || it.startsWith("   - ")}
            lines.every { it.length() <= 80 }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top