Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 172 for conf1 (0.08 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

                }
            }
    
            buildFile << """
                configurations {
                    conf.dependencies.clear()
                }
    
                dependencies {
                    conf(platform('org.test:platform:1.0'))
                    conf 'org.test:depD:1.0'
                    conf 'org.test:depF:1.0'
                }
    """
            when:
            succeeds 'checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

                        artifact source: customDocsTask.outputFile, name: "docs", extension: "htm", builtBy: customDocsTask
                        artifact source: regularFileTask.outputFile, name: "regular", extension: "txt"
                        artifact source: customJar, extension: "war", type: "web-archive", conf: "*"
                    }
                }
    """)
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            }
            buildFile << """
                def customAttr = Attribute.of('custom', String)
    
                dependencies {
                    conf "org:testA:latest.release"
                    conf "org:testB:latest.release"
                }
    
                configurations.conf.attributes.attribute(customAttr, 'bar')
            """
    
            when:
            supplierInteractions.expectGetMetadata('org', 'testA') // one network request for A
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/config.go

    	ret := sets.New[string]()
    
    	for conf := range configs {
    		if conf.Kind == kind {
    			ret.Insert(conf.Name)
    		}
    	}
    
    	return ret
    }
    
    // ConfigNameOfKind extracts config names of the specified kind.
    func ConfigNameOfKind(configs map[ConfigKey]struct{}, kind kind.Kind) sets.String {
    	ret := sets.New[string]()
    
    	for conf := range configs {
    		if conf.Kind == kind {
    			ret.Insert(conf.Name)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultExternalComponentGraphResolveState.java

                ConfigurationGraphResolveState conf = component.getConfiguration(name);
                if (conf == null) {
                    return null;
                }
                assert conf.getMetadata().isCanBeConsumed() : "External components' configurations are always consumable";
                return conf.asVariant();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	kubeletphase.TryStartKubelet()
    
    	// Now the kubelet will perform the TLS Bootstrap, transforming /etc/kubernetes/bootstrap-kubelet.conf to /etc/kubernetes/kubelet.conf
    	// Wait for the kubelet to create the /etc/kubernetes/kubelet.conf kubeconfig file. If this process
    	// times out, display a somewhat user-friendly message.
    	waiter := apiclient.NewKubeWaiter(nil, 0, os.Stdout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

                        dependencyToLockIds.compute(dependency, (k, v) -> {
                            List<String> confs = v;
                            if (v == null) {
                                confs = new ArrayList<>();
                            }
                            confs.add(entry.getKey());
                            return confs;
                        });
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    // EnsureAdminClusterRoleBinding constructs a client from admin.conf and optionally
    // constructs a client from super-admin.conf if the file exists. It then proceeds
    // to pass the clients to EnsureAdminClusterRoleBindingImpl. The function returns a
    // usable client from admin.conf with RBAC properly constructed or an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesCachingIntegrationTest.groovy

            GradleMetadataResolveRunner.useIvy() ? 'integration' : 'release'
        }
    
        def setup() {
            buildFile << """
    dependencies {
        conf 'org.test:projectA:1.0'
    }
    
    task resolve(type: Sync) {
        from configurations.conf
        into 'libs'
    }
    """
            executer.withArgument("-Ddebug.modulesource=true")
        }
    
        def "rule is cached across builds"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            AbstractRoleBasedConfigurationCreationRequest request = new NoContextRoleBasedConfigurationCreationRequest(name, role);
    
            Configuration conf = findByName(request.getConfigurationName());
            if (null != conf) {
                return request.verifyExistingConfigurationUsage(conf);
            } else {
                return migratingUnlocked(request.getConfigurationName(), request.getRole());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top