Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ImportMode (0.18 sec)

  1. src/go/build/build.go

    	if s == "" {
    		return def
    	}
    	return s
    }
    
    // An ImportMode controls the behavior of the Import method.
    type ImportMode uint
    
    const (
    	// If FindOnly is set, Import stops after locating the directory
    	// that should contain the sources for a package. It does not
    	// read any files in the directory.
    	FindOnly ImportMode = 1 << iota
    
    	// If AllowBinary is set, Import can be satisfied by a compiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                ClassNode aliasedNode = null;
                ImportNode importNode = module.getImport(pname);
                if (importNode != null && importNode != currImportNode) {
                    aliasedNode = importNode.getType();
                }
                if (aliasedNode == null) {
                    importNode = module.getStaticImports().get(pname);
                    if (importNode != null && importNode != currImportNode) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top