Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for vendoring (0.12 sec)

  1. src/cmd/go/internal/load/pkg.go

    const (
    	// ResolveImport means that loadImport should do import path expansion.
    	// That is, ResolveImport means that the import path came from
    	// a source file and has not been expanded yet to account for
    	// vendoring or possible module adjustment.
    	// Every import path should be loaded initially with ResolveImport,
    	// and then the expanded version (for example with the /vendor/ in it)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/test.go

    		// all line up (but RawImports can be shorter than the others).
    		// That is, for 0 ≤ i < len(RawImports),
    		// RawImports[i] is the import string in the program text, and
    		// Imports[i] is the expanded import string (vendoring applied or relative path expanded away).
    		// Any implicitly added imports appear in Imports and Internal.Imports
    		// but not RawImports (because they were not in the source code).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // so that the ImportPath uniquely identifies a given copy of a package.
    // The Imports, Deps, TestImports, and XTestImports lists also contain these
    // expanded import paths. See golang.org/s/go15vendor for more about vendoring.
    //
    // The error information, if any, is
    //
    //	type PackageError struct {
    //	    ImportStack   []string // shortest path from package named on command line to this one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    // Graph method.
    //
    // The rootModules slice must be sorted according to gover.ModSort.
    // The caller must not modify the rootModules slice or direct map after passing
    // them to newRequirements.
    //
    // If vendoring is in effect, the caller must invoke initVendor on the returned
    // *Requirements before any other method.
    func newRequirements(pruning modPruning, rootModules []module.Version, direct map[string]bool) *Requirements {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/go/build/build.go

    			}
    		}
    
    		// If the source directory is in GOROOT, then the in-process code works fine
    		// and we should keep using it. Moreover, the 'go list' approach below doesn't
    		// take standard-library vendoring into account and will fail.
    		if _, ok := ctxt.hasSubdir(filepath.Join(ctxt.GOROOT, "src"), absSrcDir); ok {
    			return errNoModules
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/GradleDependencyMetadata.java

        private final boolean constraint;
        private final boolean endorsing;
        private final String reason;
        private final boolean force;
        private final List<IvyArtifactName> artifacts;
    
        public GradleDependencyMetadata(ModuleComponentSelector selector, List<ExcludeMetadata> excludes, boolean constraint, boolean endorsing, @Nullable String reason, boolean force, @Nullable IvyArtifactName artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            List<ExcludeMetadata> excludes,
            boolean force, boolean changing, boolean transitive, boolean constraint, boolean endorsing,
            @Nullable String reason
        ) {
            this(selector, dependencyConfiguration, artifactNames, excludes, force, changing, transitive, constraint, endorsing, false, reason);
        }
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyMetadata.java

            this(configuration, dependencyDescriptor, reason, endorsing, dependencyDescriptor.getConfigurationArtifacts(configuration));
        }
    
        private IvyDependencyMetadata(ConfigurationMetadata configuration, IvyDependencyDescriptor dependencyDescriptor, @Nullable String reason, boolean endorsing, List<IvyArtifactName> artifacts) {
            super(reason, endorsing, artifacts);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/PropertyReportRenderer.java

            } catch (Exception e) {
                String valueClass = value != null ? String.valueOf(value.getClass()) : "null";
                LOGGER.warn("Rendering of the property '{}' with value type '{}' failed with exception", name, valueClass, e);
                strValue = valueClass + " [Rendering failed]";
            }
            getTextOutput().formatln("%s: %s", name, strValue);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 24 15:02:02 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyMetadata.java

            this(dependencyDescriptor, reason, endorsing, dependencyDescriptor.getConfigurationArtifacts());
        }
    
        private MavenDependencyMetadata(MavenDependencyDescriptor dependencyDescriptor, @Nullable String reason, boolean endorsing, List<IvyArtifactName> artifacts) {
            super(reason, endorsing, artifacts);
            this.dependencyDescriptor = dependencyDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top