Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,201 for imposes (0.14 sec)

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

    # TODO(#41688): This should include a file and line, and report the reason for the error..
    # (Today it includes only an import stack.)
    ! go get ./main
    stderr '^go: m/main imports\n\tm/bad imports\n\tšŸ§.example.com/string: malformed import path "šŸ§.example.com/string": invalid char ''šŸ§''$'
    
    
    -- go.mod --
    module m
    
    go 1.13
    
    -- main/main.go --
    package main
    
    import _ "m/bad"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 976 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_importmap.txt

    env GO111MODULE=off
    
    # gccgo does not have standard packages.
    [compiler:gccgo] skip
    
    # fmt should have no rewritten imports.
    # The import from a/b should map c/d to a's vendor directory.
    go list -f '{{.ImportPath}}: {{.ImportMap}}' fmt a/b
    stdout 'fmt: map\[\]'
    stdout 'a/b: map\[c/d:a/vendor/c/d\]'
    
    # flag [fmt.test] should import fmt [fmt.test] as fmt
    # fmt.test should import testing [fmt.test] as testing
    # fmt.test should not import a modified os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 956 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_newroot.txt

    # https://golang.org/issue/45952: 'go mod tidy' in an eager module failed due
    # to an erroneous check on root completeness.
    #
    # Per the issue report:
    # > It may have to do with:
    # >
    # > package A imports package B in go.mod, which imports package C in its own go.mod
    # > package A drops direct dependency on package B ā€¦
    #
    # We infer from that that package C is still needed by some other indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 04 22:12:42 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

                }
    
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
            """
            def conventionPluginFile = testDirectory.file(file)
            conventionPluginFile << """
                ${snippets.imports}
    
                ${snippets.body}
            """
    
            buildFile("""
                plugins {
                    id("test-convention-plugin")
                }
            """)
    
            executer.noDeprecationChecks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerBuildFailureIntegrationTest.groovy

                }
            """
    
            when:
            runner('helloWorld').buildAndFail()
    
            then:
            noExceptionThrown()
        }
    
        @InspectsBuildOutput
        @InspectsExecutedTasks
        def "exposes result when build fails expectantly"() {
            given:
            buildScript """
                task helloWorld {
                    doLast {
                        throw new GradleException('Expected exception')
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

            val imports = buildList {
                add("org.jetbrains.kotlin.analysis.api.fir.KaSymbolByFirBuilder")
                add("org.jetbrains.kotlin.analysis.api.fir.KaFirSession")
                convertersMap.values.flatMapTo(this) { it.importsToAdd }
                convertersMap.keys.mapNotNullTo(this) { it.qualifiedName }
            }
            printImports(imports)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_std_vendor.txt

    [!compiler:gc] skip
    
    # 'go list' should report imports from _test.go in the TestImports field.
    go list -f '{{.TestImports}}'
    stdout net/http # from .TestImports
    
    # 'go list' should find standard-vendored packages.
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # 'go list -test' should report vendored transitive dependencies of _test.go
    # imports in the Deps field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/ConventionsInterpretationSequenceStep.kt

    import org.gradle.internal.declarativedsl.analysis.DefaultOperationGenerationId
    import org.gradle.internal.declarativedsl.analysis.and
    import org.gradle.internal.declarativedsl.analysis.implies
    import org.gradle.internal.declarativedsl.common.dependencyCollectors
    import org.gradle.internal.declarativedsl.common.gradleDslGeneralSchema
    import org.gradle.internal.declarativedsl.evaluationSchema.SimpleInterpretationSequenceStep
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/go/internal/srcimporter/srcimporter_test.go

    	}
    
    	if pkg.Path() != pkgPath {
    		t.Errorf("got %q; want %q", pkg.Path(), pkgPath)
    	}
    }
    
    // TestIssue23092 tests relative imports.
    func TestIssue23092(t *testing.T) {
    	testImportPath(t, "./testdata/issue23092")
    }
    
    // TestIssue24392 tests imports against a path containing 'testdata'.
    func TestIssue24392(t *testing.T) {
    	testImportPath(t, "go/internal/srcimporter/testdata/issue24392")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/generate_invalid.txt

    foo
    package syntax
    //go:generate echo Fail c
    
    -- importerr/a.go --
    // Go file which imports non-existing package.
    // Go generate should process this file.
    
    package importerr
    //go:generate echo Success a
    import "foo"
    
    -- importerr/b.go --
    // Go file which imports non-existing package.
    // Go generate should process this file.
    
    //go:generate echo Success b
    package importerr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top