Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EmptyResults (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ShortCircuitEmptyConfigurationResolver.java

                graphResults, resolveContext.getResolutionHost(), EmptyResults.INSTANCE, new EmptyLenientConfiguration()
            );
            return DefaultResolverResults.graphResolved(graphResults, EmptyResults.INSTANCE,
                DefaultResolverResults.DefaultLegacyResolverResults.graphResolved(
                    EmptyResults.INSTANCE, resolvedConfiguration
                )
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. test/func5.go

    	c := make(chan int)
    	go addc(1, 2, c)
    	three(<-c)
    	go fc(1, 2, c)
    	three(<-c)
    	go fnc()(1, 2, c)
    	three(<-c)
    	go func(a, b int, c chan int) { c <- a+b }(1, 2, c)
    	three(<-c)
    
    	emptyresults()
    	noresults()
    	nothing = emptyresults
    	nothing()
    	nothing = noresults
    	nothing()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
Back to top