Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for unambiguous (0.15 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. 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)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("shortNames").Index(i), shortName, strings.Join(errs, ",")))
    		}
    	}
    
    	// kind and listKind may not be the same or parsing become ambiguous
    	if len(names.Kind) > 0 && names.Kind == names.ListKind {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("listKind"), names.ListKind, "kind and listKind may not be the same"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    // GroupVersionKind unambiguously identifies a kind.  It doesn't anonymously include GroupVersion
    // to avoid automatic coercion.  It doesn't use a GroupVersion to avoid custom marshalling
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top