Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for confName (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/BuildableIvyArtifact.java

            this.ivyArtifactName = new DefaultIvyArtifactName(name, type, ext, classifier);
        }
    
        public BuildableIvyArtifact addConfiguration(String confName) {
            configurations.add(confName);
            return this;
        }
    
        public IvyArtifactName getArtifact() {
            return ivyArtifactName;
        }
    
        public Set<String> getConfigurations() {
            return configurations;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractProjectDependencyConflictResolutionIntegrationSpec.groovy

        }
    
        static String check(String moduleName, String declaredDependencyId, String confName, String winner) { """
            task check${moduleName}_${confName} {
                def result = configurations.${confName}.incoming.resolutionResult.rootComponent
                def declared = $declaredDependencyId
                def expected = $winner
                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    case PUB:
                        if ("*".equals(conf)) {
                            String[] confs = getMd().getConfigurationsNames();
                            for (String confName : confs) {
                                artifact.addConfiguration(confName);
                            }
                        } else {
                            artifact.addConfiguration(conf);
                        }
                        break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            Set<String> wildcardPatterns = confs.get("*");
            if (!wildcardPatterns.isEmpty()) {
                boolean excludeWildcards = false;
                for (String confName : fromConfiguration.getHierarchy()) {
                    if (confs.containsKey("!" + confName)) {
                        excludeWildcards = true;
                        break;
                    }
                }
                if (!excludeWildcards) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    	High                    // value is generally assumed to be the correct match
    	Exact                   // exact match or explicitly specified value
    )
    
    var confName = []string{"No", "Low", "High", "Exact"}
    
    func (c Confidence) String() string {
    	return confName[c]
    }
    
    // String returns the canonical string representation of the language tag.
    func (t Tag) String() string {
    	return t.tag().String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            new DefaultExternalModuleDependency(group, name, version)
        }
    
        private DefaultConfiguration conf(String confName = "conf", String projectPath = ":", String buildPath = ":", ConfigurationRole role = ConfigurationRoles.LEGACY) {
            return confFactory(projectPath, buildPath).create(confName, configurationsProvider, Factories.constant(resolutionStrategy), rootComponentMetadataBuilder, role)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/pod_devices.go

    	ret := sets.New[string]()
    	for contName := range pdev.devs[podUID] {
    		ret = ret.Union(pdev.containerDevices(podUID, contName, resource))
    	}
    	return ret
    }
    
    // Returns list of device Ids allocated to the given container for the given resource.
    // Returns nil if we don't have cached state for the given <podUID, contName, resource>.
    func (pdev *podDevices) containerDevices(podUID, contName, resource string) sets.Set[string] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/manager.go

    	devices := m.podDevices.containerDevices(podUID, contName, resource)
    	if devices == nil {
    		m.mutex.Unlock()
    		return fmt.Errorf("no devices found allocated in local cache for pod %s, container %s, resource %s", podUID, contName, resource)
    	}
    
    	m.mutex.Unlock()
    	devs := devices.UnsortedList()
    	klog.V(4).InfoS("Issuing a PreStartContainer call for container", "containerName", contName, "podUID", podUID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager_test.go

    	for podUID, containerDevices := range expectedPodDevices.devs {
    		for conName, resources := range containerDevices {
    			for resource := range resources {
    				expDevices := expectedPodDevices.containerDevices(podUID, conName, resource)
    				testDevices := testManager.podDevices.containerDevices(podUID, conName, resource)
    				as.True(reflect.DeepEqual(expDevices, testDevices))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  10. docs/pt/docs/project-generation.md

    * Autenticação **Token JWT**.
    * Modelos **SQLAlchemy** (independente de extensões Flask, para que eles possam ser usados com _workers_ Celery diretamente).
    * Modelos básicos para usuários (modifique e remova conforme suas necessidades).
    * Migrações **Alembic**.
    * **CORS** (_Cross Origin Resource Sharing_ - Compartilhamento de Recursos Entre Origens).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 05:50:32 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top