Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 399 for imposes (0.14 sec)

  1. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    # The import graph used in this test looks like:
    #
    # m --- x
    #       |
    #       x_test --- y
    #
    # The module dependency graph of m is initially empty.
    # Modules x and y look like:
    #
    # x.1 (provides package x that imports y, but does not depend on module y)
    #
    # x.2-pre (no dependencies, but does not provide package x)
    #
    # y.1 (no dependencies, but provides package y)
    #
    # y.2 --- x.2-pre (provides package y)
    #
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Component(providerAccessors, "Accessors", "Collects Project Schema, generates Accessors source and bytecode")
                Component(providerImports, "Implicit Imports", "Includes Gradle's default imports")
    
    
                Rel_Neighbor(providerFactory, providerExecution, "Delegates to")
                Rel(providerExecution, providerScriptTemplates, "Uses", "script API for compilation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_bad_domain.txt

     # stderr '^useappengine[/\\]x.go:2:8: cannot find package$'
    
    ! go get  ./usenonexistent
    stderr '^go: x/usenonexistent imports\n\tnonexistent.rsc.io: cannot find module providing package nonexistent.rsc.io$'
    
    
    # go mod vendor and go mod tidy should ignore appengine imports.
    rm usenonexistent/x.go
    go mod tidy
    go mod vendor
    
    -- go.mod --
    module x
    
    -- useappengine/x.go --
    package useappengine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_added.txt

    
    # For this module, Go 1.17 produces an error for one module, and Go 1.16
    # produces a different error for a different module.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    stderr '^go: example\.com/m imports\n\texample\.net/added: module example\.net/added@latest found \(v0\.3\.0, replaced by \./a1\), but does not contain package example\.net/added$'
    
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_dep_loop.txt

    [short] skip
    [compiler:gccgo] skip
    
    # coverdep2/p1's xtest imports coverdep2/p2 which imports coverdep2/p1.
    # Make sure that coverage on coverdep2/p2 recompiles coverdep2/p2.
    
    go test -short -cover coverdep2/p1
    stdout 'coverage: 100.0% of statements' # expect 100.0% coverage
    
    -- go.mod --
    module coverdep2
    
    go 1.16
    -- p1/p.go --
    package p1
    
    func F() int { return 1 }
    -- p1/p_test.go --
    package p1_test
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 550 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_legacy_mod.txt

    # In GOPATH mode, module legacy support does path rewriting very similar to vendoring.
    
    env GO111MODULE=off
    
    go list -f '{{range .Imports}}{{.}}{{"\n"}}{{end}}' old/p1
    stdout ^new/p1$
    
    go list -f '{{range .Imports}}{{.}}{{"\n"}}{{end}}' new/p1
    stdout ^new/p2$           # not new/v2/p2
    ! stdout ^new/v2
    stdout ^new/sub/x/v1/y$   # not new/sub/v2/x/v1/y
    ! stdout ^new/sub/v2
    stdout ^new/sub/inner/x # not new/sub/v2/inner/x
    
    go build old/p1 new/p1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 16 16:15:13 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. cmd/import-boss/README.md

    packages" which are more sophisticated than Go's `internal` convention.
    
    If inverse rules are found, then all known imports of the package are checked
    against each such rule, in the same fashion as regular rules.  Note that this
    can only handle known imports, which is defined as any package which is also
    being considered by this `import-boss` run.  For most repositories, `./...` will
    suffice.
    
    Example:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/DefaultImportsReader.java

    import java.net.URL;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Map;
    
    public class DefaultImportsReader implements ImportsReader {
    
        public static final String RESOURCE = "/default-imports.txt";
        private static final String MAPPING_RESOURCE = "/api-mapping.txt";
        private final String[] importPackages;
        private final Map<String, List<String>> simpleNameToFQCN;
    
        public DefaultImportsReader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmPluginServices.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * This class exposes a number of internal utilities for use by Gradle JVM plugins.
     */
    @NonNullApi
    @HasInternalProtocol
    @SuppressWarnings({"UnusedReturnValue", "deprecation"})
    public interface JvmPluginServices extends JvmEcosystemUtilities {
    
        /**
         * Registers a variant on {@code configuration} which exposes the resources defined by {@code sourceSet}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt

        }
    
        private fun SmartPrinter.collectAndPrintImports(diagnosticList: HLDiagnosticList) {
            val imports = collectImports(diagnosticList)
            printImports(imports)
        }
    
        protected fun SmartPrinter.printHeader(packageName: String, diagnosticList: HLDiagnosticList) {
            printCopyright()
            println("package $packageName")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top