Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 398 for a$b (0.02 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            createDirs("a", "b", "c")
            settingsFile << """
                rootProject.name = 'thing'
                include 'a', 'b', 'c'
            """
            defineTaskInSettings(settingsFile)
            createDirs("buildSrc/a", "buildSrc/b")
            file("buildSrc/settings.gradle") << """
                include 'a', 'b'
            """
            file("buildSrc/src/main/java/Lib.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMultiProjectIntegrationTest.groovy

        def "reuses cache for absolute task invocation from subproject dir across dirs"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            buildScript """
                task ok
            """
            def a = createDir('a')
            def b = createDir('b')
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    			allNonOverlappingStats = append(allNonOverlappingStats, name)
    		}
    		slices.SortFunc(allNonOverlappingStats, func(a, b string) int {
    			if a == b {
    				return 0
    			}
    			if a == "Execution time" {
    				return -1
    			}
    			if b == "Execution time" {
    				return 1
    			}
    			return cmp.Compare(a, b)
    		})
    
    		// Write down all the range stats and sort them.
    		allRangeStats := make([]string, 0, len(validRangeStats))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CommandLineTaskExecutionIntegrationTest.groovy

            ":a::"   | "Cannot locate tasks that match ':a::'. The path should not include an empty segment (try ':a' instead)."
            ":a::b"  | "Cannot locate tasks that match ':a::b'. The path should not include an empty segment (try ':a:b' instead)."
        }
    
        @ToBeFixedForIsolatedProjects(because = "Investigate")
        def "build logic can mutate the list of requested tasks"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 2.3K bytes
    - Viewed (3)
  5. src/cmd/go/testdata/script/work_edit.txt

    			"New": {
    				"Path": "../z"
    			}
    		}
    	]
    }
    -- unformatted --
    go 1.18
     use (
     a
      b
      c
      )
      replace (
      x.1 v1.3.0 => y.1 v1.4.0
                                x.1 v1.4.0 => ../z
                                )
    -- formatted --
    go 1.18
    
    use (
    	a
    	b
    	c
    )
    
    replace (
    	x.1 v1.3.0 => y.1 v1.4.0
    	x.1 v1.4.0 => ../z
    )
    -- $WORK/g/go.work.start --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Comparators.java

       */
      @ParametricNullness
      public static <T extends @Nullable Object> T min(
          @ParametricNullness T a, @ParametricNullness T b, Comparator<? super T> comparator) {
        return (comparator.compare(a, b) <= 0) ? a : b;
      }
    
      /**
       * Returns the maximum of the two values. If the values compare as 0, the first is returned.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/testing/benchmark_test.go

    	testing.Benchmark(func(b *testing.B) {
    		var compares int64
    		for i := 0; i < b.N; i++ {
    			s := []int{5, 4, 3, 2, 1}
    			slices.SortFunc(s, func(a, b int) int {
    				compares++
    				return cmp.Compare(a, b)
    			})
    		}
    		// This metric is per-operation, so divide by b.N and
    		// report it as a "/op" unit.
    		b.ReportMetric(float64(compares)/float64(b.N), "compares/op")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/net/dnsclient.go

    	if x.Length != y.Length {
    		return false
    	}
    	for i := 0; i < int(x.Length); i++ {
    		a := x.Data[i]
    		b := y.Data[i]
    		if 'A' <= a && a <= 'Z' {
    			a += 0x20
    		}
    		if 'A' <= b && b <= 'Z' {
    			b += 0x20
    		}
    		if a != b {
    			return false
    		}
    	}
    	return true
    }
    
    // isDomainName checks if a string is a presentation-format domain name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/ToolingApiEclipseProjectDependenciesCrossVersionSpec.groovy

    @TargetGradleVersion(">=6.8")
    class ToolingApiEclipseProjectDependenciesCrossVersionSpec extends ToolingApiSpecification {
    
        def "project dependency does not leak test sources"() {
            setup:
            settingsFile << "include 'a', 'b'"
            file('a/build.gradle') << """
                plugins {
                    id 'java-library'
                }
            """
            file('b/build.gradle') << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

        def "task can have actions defined using Groovy script closures"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            [file("a/build.gradle"), file("b/build.gradle")].each {
                it << """
                    tasks.register("some") {
                        doFirst {
                            println("FIRST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top