Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for buildD (0.1 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    func (c *CRDCanonicalTypeNamer) OpenAPICanonicalTypeName() string {
    	return fmt.Sprintf("%s/%s.%s", c.group, c.version, c.kind)
    }
    
    // builder contains validation schema and basic naming information for a CRD in
    // one version. The builder works to build a WebService that kube-openapi can
    // consume.
    type builder struct {
    	schema     *spec.Schema
    	listSchema *spec.Schema
    	ws         *restful.WebService
    
    	group    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. subprojects/distributions-dependencies/build.gradle.kts

            api(libs.maven3Model)           { version { strictly(mavenVersion); because("required to load/build poms and repository settings") }}
            api(libs.maven3RepositoryMetadata) { version { strictly(mavenVersion); because("required to load/build poms and repository settings") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    Use of dynamic dependency versions (e.g. `1.+` or `[1.0,2.0)`) makes builds non-deterministic.
    This causes builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over.
    
    To achieve https://reproducible-builds.org/[reproducible builds], it is necessary to _lock_ versions of dependencies and transitive dependencies such that a build with the same inputs will always resolve the same module versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/deployment/builder.go

    func (b *builder) WithClusters(clusters ...cluster.Cluster) Builder {
    	next := b
    	next.clusters = clusters
    	return next
    }
    
    func (b *builder) Build() (out echo.Instances, err error) {
    	return build(b)
    }
    
    // injectionTemplates lists the set of templates for each Kube cluster
    func (b *builder) injectionTemplates() (map[string]sets.String, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
        def "projects are configured in parallel when projects use plugins from included builds and project scoped model is queried concurrently"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    module('org:module:1.0')
                }
            }
    
            and:
            outputContains "Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle'"
        }
    
        def "can fail the build if a project declares a repository"() {
            repository {
                'org:module:1.0'()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            "filteredTree"         | _
        }
    
        def "builds correct artifacts when there is a project cycle in dependency graph - fluid: #fluid"() {
            makeFluid(fluid)
    
            // A graph from root compile -> child default -> root default, so not an actual cycle here
            // Graph includes artifact and file dependencies on each node, should build all of them
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

            this.flakinessDataProvider = flakinessDataProvider;
            this.executionDataProvider = executionDataProvider;
        }
    
        public static String getTeamCityWebUrlFromBuildId(String buildId) {
            return "https://builds.gradle.org/viewLog.html?buildId=" + buildId;
        }
    
        protected abstract class TableHtml extends MetricsHtml {
            AtomicInteger counter = new AtomicInteger();
    
            public TableHtml(Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    artifact from source code produces the same result, byte for byte, no matter when and where it is built. This is necessary for projects like reproducible-builds.org.
    
    These tweaks not only lead to better incremental build integration, but they also help with https://reproducible-builds.org[reproducible builds]. In essence, reproducible builds guarantee that you will see the same results from a build execution — including test results and production binaries — no matter when or on what system...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		DetectedRestoreBinary: iptablesRestoreBin,
    		Version:               parsedVer,
    		Legacy:                !isNft,
    		ExistingRules:         existingRules,
    	}, nil
    }
    
    // runInSandbox builds a lightweight sandbox ("container") to build a suitable environment to run iptables commands in.
    // This is used in CNI, where commands are executed from the host but from within the container network namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top