Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 149 for buildC (0.08 sec)

  1. pilot/pkg/networking/core/cluster_builder.go

    		if cachedCluster == nil {
    			allFound = false
    		}
    		res = append(res, cachedCluster)
    	}
    	return res, allFound
    }
    
    // build does any final build operations needed, like marshaling etc.
    func (mc *clusterWrapper) build() *cluster.Cluster {
    	if mc == nil {
    		return nil
    	}
    	// Marshall Http Protocol options if they exist.
    	if mc.httpProtocolOptions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dynamic-dependency-build-scan.png

    dependency-management-dynamic-dependency-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway.go

    		}
    	}
    
    	return nil
    }
    
    func (configgen *ConfigGeneratorImpl) buildGatewayListeners(builder *ListenerBuilder) *ListenerBuilder {
    	if builder.node.MergedGateway == nil {
    		log.Debugf("buildGatewayListeners: no gateways for router %v", builder.node.ID)
    		return builder
    	}
    
    	mergedGateway := builder.node.MergedGateway
    	log.Debugf("buildGatewayListeners: gateways after merging: %v", mergedGateway)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            if (project.getProjectPath().equals(Path.ROOT)) {
                // Project is the root of a build, so include the root projects of any builds nested under that build
                buildRegistry.visitBuilds(build -> {
                    if (build.isImportableBuild() && build.isProjectsLoaded()) {
                        ProjectState rootProject = build.getProjects().getRootProject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

            @Override
            public WorkNodeAction getPreExecutionAction() {
                // Before resolving, need to determine the full set of upstream dependencies that need to be built.
                // The full set is usually known when the work graph is built. However, in certain cases where a project dependency conflicts with an external dependency, this is not known
                // until the full graph resolution, which can happen at execution time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. tools/docker-builder/types.go

    // is not a unique variant though. Currently, it represents DebugVariant.
    // If both DebugVariant and DefaultVariant are built, there will be a single build but multiple tags
    const (
    	// PrimaryVariant is the variant that DefaultVariant actually builds
    	PrimaryVariant = DebugVariant
    
    	DefaultVariant    = "default"
    	DebugVariant      = "debug"
    	DistrolessVariant = "distroless"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

    import org.apache.maven.project.collector.RequestPomCollectionStrategy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static java.util.Comparator.comparing;
    
    /**
     * Builds the {@link ProjectDependencyGraph inter-dependencies graph} between projects in the reactor.
     */
    @Named(GraphBuilder.HINT)
    @Singleton
    public class DefaultGraphBuilder implements GraphBuilder {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                ImmutableList.Builder<LocalOriginDependencyMetadata> dependencies = ImmutableList.builder();
                ImmutableSet.Builder<LocalFileDependencyMetadata> files = ImmutableSet.builder();
                ImmutableList.Builder<ExcludeMetadata> excludes = ImmutableList.builder();
    
                configurationsProvider.visitAll(config -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            state.getConfiguration("child2").metadata.dependencies*.source == [dependency1]
            state.getConfiguration("other").metadata.dependencies.isEmpty()
        }
    
        def "builds and caches exclude rules for a configuration"() {
            given:
            def conf = dependencyScope("conf")
            def child = resolvable("child", [conf])
    
            conf.exclude([group: "group1", module: "module1"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            """
            def commit = repo.commit('initial commit')
            def block = server.expectAndBlock("block")
    
            when:
            // Start the build then wait until the first configuration is resolved.
            executer.withTasks("assemble")
            def build = executer.start()
            block.waitForAllPendingCalls()
    
            // Change the head of the repo
            def javaFile = file('dep/src/main/java/Dep.java')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top