Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 204 for unambiguous (0.21 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

            ":aB:help"           | "Cannot locate tasks that match ':aB:help' as project 'aB' is ambiguous in root project 'broken'. Candidates are: 'aaBb', 'aaaBbb', 'aaaaBbbb'."
            ":aaBb:cD:help"      | "Cannot locate tasks that match ':aaBb:cD:help' as project 'cD' is ambiguous in project ':aaBb'. Candidates are: 'ccDD', 'cccDDD'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_issue60313.txt

    # Regression test for https://go.dev/issue/60313: 'go mod tidy' did not preserve
    # dependencies needed to prevent 'ambiguous import' errors in external test
    # dependencies.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    -- go.mod --
    module example
    
    go 1.21
    
    require (
    	example.net/a v0.1.0
    	example.net/b v0.1.0
    )
    
    require example.net/outer/inner v0.1.0 // indirect
    
    replace (
    	example.net/a v0.1.0 => ./a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 12 19:42:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java

    import com.google.caliper.Benchmark;
    import java.util.concurrent.TimeUnit;
    
    /**
     * Simple benchmark: create, start, read. This does not currently report the most useful result
     * because it's ambiguous to what extent the stopwatch benchmark is being affected by GC.
     *
     * @author Kevin Bourrillion
     */
    public class StopwatchBenchmark {
      @Benchmark
      long stopwatch(int reps) {
        long total = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  4. Jenkinsfile

        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
        if (e.causes.size() == 0) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
        // this ambiguous condition means during a shell step, user probably aborted
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleBindingFailureIntegrationTest.groovy

            failureCauseContains '''
      tasks.foonar { ... } @ build.gradle line 15, column 17
        subject:
          - tasks.foonar Object [*]
              suggestions: tasks.foobar
    '''
        }
    
        def "fails on ambiguous by-type reference"() {
            given:
            buildScript """
                class Plugin1 {
                    static class Rules extends RuleSource {
                        @Model
                        String s1() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. src/html/template/error.go

    	// OK indicates the lack of an error.
    	OK ErrorCode = iota
    
    	// ErrAmbigContext: "... appears in an ambiguous context within a URL"
    	// Example:
    	//   <a href="
    	//      {{if .C}}
    	//        /path/
    	//      {{else}}
    	//        /search?q=
    	//      {{end}}
    	//      {{.X}}
    	//   ">
    	// Discussion:
    	//   {{.X}} is in an ambiguous URL context since, depending on {{.C}},
    	//  it may be either a URL suffix or a query parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. Jenkinsfile.s390x

        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
        if (e.causes.size() == 0) {
            currentBuild.result = "ABORTED"
        } else {
            currentBuild.result = "FAILURE"
        }
        throw e
    } catch (hudson.AbortException e) {
        echo "[FAILURE-003] AbortException ${e}"
        // this ambiguous condition means during a shell step, user probably aborted
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DependencyInjectionUsingLenientConstructorSelectorTest.groovy

            e.cause.message == "No constructors of type DependencyInjectionUsingLenientConstructorSelectorTest.HasConstructors match parameters: ['a', 'b']"
        }
    
        def "fails when constructors are ambiguous"() {
            when:
            instantiator.newInstance(HasConstructors, ["a"] as Object[])
    
            then:
            ObjectInstantiationException e = thrown()
            e.cause instanceof IllegalArgumentException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/report/IncompatibleTypeReferenceReporter.java

            writeTo(new PrintWriter(string));
            return string.toString();
        }
    
        public void writeTo(PrintWriter writer) {
            //"type-only model reference of type '%s'%s is ambiguous as multiple model elements are available for this type:%n  %s (created by %s)%n  %s (created by %s)",
            writer.print("Model reference to element '");
            writer.print(path);
            writer.print("' with type ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_split.txt

    cp go.mod go.mod.orig
    
    
    # 'go get' on a package already provided by the build list should update
    # the module already in the build list, not fail with an ambiguous import error.
    
    go get example.net/split/nested@patch
    go list -m all
    stdout '^example.net/split v0.2.1 '
    ! stdout '^example.net/split/nested'
    
    # We should get the same behavior if we use a pattern that matches only that package.
    
    cp go.mod.orig go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top