Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 833 for Discover (0.18 sec)

  1. cmd/kubeadm/app/util/etcd/etcd.go

    // it will first discover at least one etcd endpoint to connect to. Once created, the client synchronizes client's endpoints with
    // the known endpoints from the etcd membership API, since it is the authoritative source of truth for the list of available members.
    func NewFromCluster(client clientset.Interface, certificatesDir string) (*Client, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

         * Represents a work node that prepares the upstream dependencies of a particular transform applied to a particular artifact.
         * This is a separate node so that this work can access project state to do the resolution and to discover additional dependencies for the transform
         * during resolution of upstream dependencies. It also allows the work of resolution to be attributed separately to the work of the transform.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/cmd.go

    		return !excludeAddrs.Contains(s)
    	})
    
    	proxyArgs.IPAddresses = append(proxyArgs.IPAddresses, proxyAddrs...)
    	log.Debugf("proxy IPAddresses: %v", proxyArgs.IPAddresses)
    
    	// After IP addresses are set, let us discover IPMode.
    	proxyArgs.DiscoverIPMode()
    
    	// Extract pod variables.
    	proxyArgs.ID = proxyArgs.PodName + "." + proxyArgs.PodNamespace
    
    	// If not set, set a default based on platform - podNamespace.svc.cluster.local for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    There are dependencies that Gradle _cannot_ discover this way.
    In particular, you will notice that the CLI above uses the `help` task.
    If you don't specify any task, Gradle will automatically run the default task and generate a configuration file at the end of the build too.
    
    The difference is that Gradle _may_ discover more dependencies and artifacts depending on the tasks you execute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

            ReflectionUtils.generateInjectingInitializer(Key.of((Class<T>) instance.getClass()))
                    .compile(this::getCompiledBinding)
                    .accept(instance);
        }
    
        @Override
        public Injector discover(ClassLoader classLoader) {
            try {
                Enumeration<URL> enumeration = classLoader.getResources("META-INF/maven/org.apache.maven.api.di.Inject");
                while (enumeration.hasMoreElements()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/flag.go

    	name = name[strings.LastIndex(name, `/`)+1:]
    	name = name[strings.LastIndex(name, `\`)+1:]
    	name = strings.TrimSuffix(name, ".exe")
    
    	p := ""
    
    	if s == "goexperiment" {
    		// test/run.go uses this to discover the full set of
    		// experiment tags. Report everything.
    		p = " X:" + strings.Join(buildcfg.Experiment.All(), ",")
    	} else {
    		// If the enabled experiments differ from the baseline,
    		// include that difference.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    That's expected and ensures the portal won't be overrun with multiple experimental and duplicate greeting-type plugins.
    
    After approval, your plugin will be available on the Gradle Plugin Portal for others to discover and use.
    
    [[consume]]
    == Consume the published plugin
    
    Once you successfully publish a plugin, it won't immediately appear on the Portal.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/garbagecollector.go

    	if lookupErr != nil {
    		if groupLookupFailures, isLookupFailure := discovery.GroupDiscoveryFailedErrorGroups(lookupErr); isLookupFailure {
    			logger.Info("failed to discover some groups", "groups", groupLookupFailures)
    		} else {
    			logger.Info("failed to discover preferred resources", "error", lookupErr)
    		}
    	}
    	if preferredResources == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    You can use string literals for configuration names in dependency declarations and within the `configurations {}` block.
    
    The IDE won't be able to help you discover the available configurations in this situation, but you can look them up either in the corresponding plugin's documentation or by running `gradle dependencies`.
    
    ==== Project extensions and conventions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

         * all additional modules, the second step creates a {@link ClassLoader} based on the provided classpath and
         * modulepath and attempts to discover the modules which are already present.
         */
        private AdditionalClasspath filterAdditionalClasspath(Iterable<? extends File> classpath, Iterable<? extends File> modulepath, AdditionalClasspath unfiltered) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top