Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for Resolution (0.17 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    					Port:     3417,
    					Protocol: protocol.TCP,
    				},
    				&Port{
    					Name:     "http-port",
    					Port:     3418,
    					Protocol: protocol.HTTP,
    				},
    			},
    			Resolution: ClientSideLB,
    			Attributes: ServiceAttributes{
    				Name:            "otel-collector",
    				Namespace:       "foo",
    				ServiceRegistry: provider.Kubernetes,
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            Version.V20,
                            prefix + "layout",
                            repository.getId(),
                            "uses the unsupported value 'legacy', artifact resolution might fail.",
                            repository);
                }
            }
        }
    
        private void validate20RawResources(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeToken.java

        // return subclass as a raw type
        if (runtimeType instanceof Class
            && ((subclass.getTypeParameters().length == 0)
                || (getRawType().getTypeParameters().length != 0))) {
          // no resolution needed
          return subclass;
        }
        // class Base<A, B> {}
        // class Sub<X, Y> extends Base<X, Y> {}
        // Base<String, Integer>.subtype(Sub.class):
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[lazypublishartifact_fileresolver]]
    ==== Using LazyPublishArtifact without a FileResolver is deprecated
    
    When using a LazyPublishArtifact without a FileResolver, a different file resolution strategy is used, which duplicates some logic in the FileResolver.
    
    To improve consistency, LazyPublishArtifact should be used with a FileResolver, and will require it in the future.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

        // return subclass as a raw type
        if (runtimeType instanceof Class
            && ((subclass.getTypeParameters().length == 0)
                || (getRawType().getTypeParameters().length != 0))) {
          // no resolution needed
          return subclass;
        }
        // class Base<A, B> {}
        // class Sub<X, Y> extends Base<X, Y> {}
        // Base<String, Integer>.subtype(Sub.class):
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	// without knowing whether the requested packages exist for the given tags.
    	//
    	// Note that if a requested package does not exist *at all*, it will fail
    	// during module resolution and the error will not be suppressed.
    	SilenceNoGoErrors bool
    
    	// SilenceUnmatchedWarnings suppresses the warnings normally emitted for
    	// patterns that did not match any packages.
    	SilenceUnmatchedWarnings bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/17874")
        def "fails if plugin, version or bundle is used in force of resolution strategy"() {
            disableProblemsApiCheck()
    
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (types == null) {
                return true;
            }
            currentClass.setUsingGenerics(true);
            boolean resolved = true;
            for (GenericsType type : types) {
                // attempt resolution on all types, so don't short-circuit and stop if we've previously failed
                resolved = resolveGenericsType(type) && resolved;
            }
            return resolved;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    include::sample[dir="snippets/java/fixtures/groovy",files="build.gradle[tags=external-test-fixtures-dependency]"]
    ====
    
    It's worth noting that if the external project is _not_ publishing Gradle Module Metadata, then resolution will fail with an error indicating that such a variant cannot be found:
    
    .Output of **`gradle dependencyInsight --configuration functionalTestClasspath --dependency gson`**
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top