Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for unambiguous (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task ambiguous(type: Consumer) {
                    // reference cannot be resolved by type as multiple services with the given type exist
                    doLast {
                        counter.get()
                    }
                }
            """
            enableStableConfigurationCache()
    
            when:
            fails 'ambiguous'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    //
    // resolveQueries starts by resolving one module version from each
    // unambiguous pathSet attached to the given queries.
    //
    // If no unambiguous query results in a change to the build list,
    // resolveQueries revisits the ambiguous query candidates and resolves them
    // arbitrarily in order to guarantee forward progress.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    	// packages in external modules. However, if we drop the explicit
    	// requirements, that may change an import from unambiguous (due to lazy
    	// module loading) to ambiguous (because lazy module loading no longer
    	// disambiguates it). For any package that has become ambiguous, we try
    	// to fix it by promoting its module to an explicit root.
    	// (See https://go.dev/issue/60313.)
    	q := par.NewQueue(runtime.GOMAXPROCS(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// are unambiguous. That also produces clearer diagnostics, since we can say
    	// exactly what happened to the package if it became ambiguous or disappeared
    	// entirely.
    	//
    	// We re-resolve the packages in parallel because this process involves disk
    	// I/O to check for package sources, and because the process of checking for
    	// ambiguous imports may require us to download additional modules that are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	setupCmd(cmd)
    	if t.json && opts.variant != "" && !opts.omitVariant {
    		// Rewrite Package in the JSON output to be pkg:variant. When omitVariant
    		// is true, pkg.TestName is already unambiguous, so we don't need to
    		// rewrite the Package field.
    		//
    		// We only want to process JSON on the child's stdout. Ideally if
    		// stdout==stderr, we would also use the same testJSONFilter for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                        continue;
                    }
                    if (claimedBy == null) {
                        claimedBy = handler;
                    } else {
                        handler.ambiguous(propertyMetaData);
                        break;
                    }
                }
                if (claimedBy != null) {
                    continue;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            normaliseLineSeparators(e.message).contains '''
      foo creator
        inputs:
          - <no path> Long [*]
    '''
        }
    
        def "cannot register when by-type input is ambiguous"() {
            given:
            registry.registerInstance("other-1", 11)
            registry.registerInstance("other-2", 12)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    			`<script>alert(/{{""}}/.test(""));</script>`,
    			`<script>alert(/(?:)/.test(""));</script>`,
    		},
    		{
    			"jsReAmbigOk",
    			`<script>{{if true}}var x = 1{{end}}</script>`,
    			// The {if} ends in an ambiguous jsCtx but there is
    			// no slash following so we shouldn't care.
    			`<script>var x = 1</script>`,
    		},
    		{
    			"styleBidiKeywordPassed",
    			`<p style="dir: {{"ltr"}}">`,
    			`<p style="dir: ltr">`,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        fun addInterceptor(interceptor: Interceptor) =
          apply {
            interceptors += interceptor
          }
    
        @JvmName("-addInterceptor") // Prefix with '-' to prevent ambiguous overloads from Java.
        inline fun addInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addInterceptor(Interceptor { chain -> block(chain) })
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  10. pilot/pkg/model/sidecar_test.go

    				},
    				{
    					Hostname: "baz.svc.cluster.local",
    					Ports:    port7443,
    				},
    			},
    			nil,
    		},
    		{
    			"virtual-service-pick-alphabetical",
    			configs11,
    			// Ambiguous; same hostname in ns1 and ns2, neither is config namespace
    			// ns1 should always win
    			services12,
    			virtualServices1,
    			[]*Service{
    				{
    					Hostname: "foo.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top