Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for setContainers (0.22 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

        }
    
        /**
         * The classpath containers to be added.
         * <p>
         * See {@link EclipseClasspath} for an example.
         */
        public Set<String> getContainers() {
            return containers;
        }
    
        public void setContainers(Set<String> containers) {
            this.containers = containers;
        }
    
        /**
         * The default output directory where Eclipse puts compiled classes.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                            containers.addAll(model.getClasspath().getContainers());
                            model.getClasspath().setContainers(containers);
                        }
                    });
    
                    configureScalaDependencies(project, model);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/ClasspathFactory.java

        private List<SourceFolder> createSourceFolders() {
            return new SourceFoldersCreator().createSourceFolders(classpath);
        }
    
        private List<ClasspathEntry> createContainers() {
            return classpath.getContainers().stream()
                .map(Container::new)
                .collect(toImmutableList());
        }
    
        private List<AbstractClasspathEntry> createDependencies() {
            return dependenciesCreator.createDependencyEntries();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

            return this.classpath.classpathentry as List
        }
    
        String getOutput() {
            return this.classpath.classpathentry.find { it.@kind == 'output' }.@path
        }
    
        List<String> getContainers() {
            return this.classpath.classpathentry.findAll { it.@kind == 'con' }.collect { it.@path }
        }
    
        List<String> getSources() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_windows.go

    	containerMap map[string]*runtimeapi.Container,
    	podSandbox *runtimeapi.PodSandbox,
    	rootFsInfo *cadvisorapiv2.FsInfo,
    	updateCPUNanoCoreUsage bool) error {
    	for _, criContainerStat := range criSandboxStat.GetWindows().GetContainers() {
    		container, found := containerMap[criContainerStat.Attributes.Id]
    		if !found {
    			continue
    		}
    		// Fill available stats for full set of required pod stats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/content/content.go

    	out := *p
    	out.IstioNamespace = namespace
    	return &out
    }
    
    func (p *Params) SetPod(pod string) *Params {
    	out := *p
    	out.Pod = pod
    	return &out
    }
    
    func (p *Params) SetContainer(container string) *Params {
    	out := *p
    	out.Container = container
    	return &out
    }
    
    // GetK8sResources returns all k8s cluster resources.
    func GetK8sResources(p *Params) (map[string]string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/bugreport/bugreport.go

    	for _, p := range paths {
    		namespace, _, pod, container, err := cluster2.ParsePath(p)
    		if err != nil {
    			log.Error(err.Error())
    			continue
    		}
    
    		cp := params.SetNamespace(namespace).SetPod(pod).SetContainer(container)
    		proxyDir := archive.ProxyOutputPath(tempDir, namespace, pod)
    		switch {
    		case common.IsProxyContainer(params.ClusterVersion, container):
    			if !ambient.IsZtunnelPod(client, pod, namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus; synchronized class ComponentLookupManag$1 { } org/codehaus/plexus/ComponentLookupManag.class package org.codehaus.plexus; public abstract interface ComponentLookupManag { public static final String ROLE; public abstract void setContainer(MutablePlexusContain); public abstract Object lookup(String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    org.codehaus.plexus; synchronized class ComponentLookupManag$1 { } org/codehaus/plexus/ComponentLookupManag.class package org.codehaus.plexus; public abstract interface ComponentLookupManag { public static final String ROLE; public abstract void setContainer(MutablePlexusContain); public abstract Object lookup(String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public java.util.List lookupList(String, java.util.List, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public void setContainer(MutablePlexusContain); private component.manager.ComponentManager createComponentManag(component.repository.ComponentDescriptor, String, String) throws component.repository.exception.ComponentLookupExcep; } org/codehaus/plexus/DefaultContainerConf.class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
Back to top