Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testpromise (0.09 sec)

  1. src/cmd/go/internal/test/testflag.go

    	// directory, but 'go test' defaults it to the working directory of the 'go'
    	// command. Set it explicitly if it is needed due to some other flag that
    	// requests output.
    	if testProfile() != "" && !outputDirSet {
    		injectedFlags = append(injectedFlags, "-test.outputdir="+testOutputDir.getAbs())
    	}
    
    	// If the user is explicitly passing -help or -h, show output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                if (node == null) {
                    return false;
                }
                for (ModelNodeInternal child : node.getLinks()) {
                    if (child.isAtLeast(Discovered) && child.getPromise().canBeViewedAs(typeToBind)) {
                        return true;
                    }
                }
                return false;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
Back to top