Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 320 for realizes (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/PendingSource.java

        /**
         * Adds an action to be executed when a value from a pending element is concretely added.
         * The provided action is only called when a pending value is realized and the value is not
         * already present in the concrete values of this source.
         */
        void onPendingAdded(Action<T> action);
    
        boolean isEmpty();
    
        int size();
    
        void clear();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:14 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            return process.inputStream.readLines().drop(3).collect { new File(it).name }
        }
    
        List<String> listLinkedLibraries() {
            def dumpbin = findExe("dumpbin.exe")
            def process = [dumpbin.absolutePath, '/IMPORTS', binaryFile.absolutePath].execute(["PATH=$vcPath"], null)
            return process.inputStream.readLines()
        }
    
        List<BinaryInfo.Symbol> listSymbols() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/AbstractComponentReportIntegrationTest.groovy

            assert removeDownloadMessageAndEmptyLines(actualOutput) == expected(expectedOutput)
            return true
        }
    
        String removeDownloadMessageAndEmptyLines(String output) {
            return output.readLines().findAll { !it.isEmpty() && !(it ==~ /^Download http.*$/) }.join('\n')
        }
    
        String expected(String normalised) {
            String raw = """------------------------------------------------------------
    Root project 'test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/dependencies/AsciiDependencyReportRendererTest.groovy

            renderer.completeConfiguration(conf1);
            renderer.startConfiguration(conf2);
            renderer.completeConfiguration(conf2);
    
            then:
            textOutput.value.readLines() == [
                    'config1 - description',
                    '',
                    'config2 (n)'
            ]
        }
    
        def "renders dependency graph"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    	lineReader := &LineReader{reader: reader}
    
    	// read lines
    	var readLines [][]byte
    	for range lines {
    		bytes, err := lineReader.Read()
    		if err != nil && err != io.EOF {
    			t.Fatalf("failed to read lines: %v", err)
    		}
    		readLines = append(readLines, bytes)
    	}
    
    	// validate
    	for i := range lines {
    		if len(lines[i]) != len(readLines[i]) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/AbstractWorkerExecutorSampleIntegrationTest.groovy

            def reversedFile = workerExecutorSample(dsl).file("build/reversed/${author}.txt")
            assert reversedFile.exists()
            assert reversedFile.readLines() == workerExecutorSample(dsl).file("sources/${author}.txt").readLines().collect { it.reverse() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/Resources.java

       */
      @CanIgnoreReturnValue // some processors won't return a useful result
      @ParametricNullness
      public static <T extends @Nullable Object> T readLines(
          URL url, Charset charset, LineProcessor<T> callback) throws IOException {
        return asCharSource(url, charset).readLines(callback);
      }
    
      /**
       * Reads all of the lines from a URL. The lines do not include line-termination characters, but do
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/plugins/ComponentBasePluginTest.groovy

            when:
            dsl {
                apply plugin: ComponentBasePlugin
                model {
                    baseComponent(ComponentSpec) {
                    }
                }
            }
    
            then:
            realize("baseComponent") instanceof ComponentSpec
        }
    
        def "adds a 'components' container to the project model"() {
            when:
            dsl {
                apply plugin: ComponentBasePlugin
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.h

                                bool smuggle_disallowed_ops);
    
    // This function is a common entry point for all graph optimizations that are
    // not specific to any hardware. It legalizes SHLO->MHLO, does MHLO->MHLO
    // optimizations by calling `AddMhloOptimizationPasses` internally, and
    // legalizes MHLO->SHLO
    void AddStablehloOptimizationPasses(OpPassManager& pm);
    
    // Adds all the backend-agonstic stableHLO optimization passes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 01:08:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphRendererSpec.groovy

            dep1.children.addAll(dep11)
            dep2.children.addAll(dep21, dep22)
    
            when:
            renderer.render([root])
            renderer.complete()
    
            then:
            textOutput.value.readLines() == [
                    '+--- dep1',
                    '|    \\--- dep1.1',
                    '\\--- dep2',
                    '     +--- dep2.1',
                    '     \\--- dep2.2'
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top