Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 147 for buildC (0.1 sec)

  1. src/cmd/go/internal/work/action.go

    }
    
    // BuildActionID returns the action ID section of a's build ID.
    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    func (a *Action) BuildID() string { return a.buildID }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== buildSrc can now see included builds from the root
    
    Previously, `buildSrc` was built in such a way that included builds were ignored from the root build.
    
    Since Gradle 6.7, `buildSrc` can see any included build from the root build.
    This may cause dependencies to be substituted from an included build in `buildSrc`.
    This may also change the order in which some builds are executed if an included build is needed by `buildSrc`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    Properties in a build script can easily become a maintenance headache and convolute the build script logic.
    The `gradle.properties` helps with keeping properties separate from the build script and should be explored as viable option.
    It's a good location for placing <<build_environment.adoc#sec:gradle_configuration_properties,properties that control the build environment>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                                    performanceResults.buildResult(displayInfo).add(operation);
                                    builds.add(displayInfo);
                                }
                            }
                        }
                        return new CrossBuildPerformanceTestHistory(experiment, ImmutableList.copyOf(builds), results);
                    }
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    === Kotlin DSL build structure samples
    
    Depending on your build structure you might be interested in the following user manual chapters:
    
    * The <<writing_build_scripts#writing_build_scripts,Writing Build Scripts>> chapter demonstrates the use of `apply(from = "")` to modularize build scripts.
    * The <<multi_project_builds#multi_project_builds,Multi-project Builds>> chapter demonstrates various multi-project build structures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    )
    
    type builder struct {
    	cfg       *CFG
    	mayReturn func(*ast.CallExpr) bool
    	current   *Block
    	lblocks   map[string]*lblock // labeled blocks
    	targets   *targets           // linked stack of branch targets
    }
    
    func (b *builder) stmt(_s ast.Stmt) {
    	// The label of the current statement.  If non-nil, its _goto
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    func NewBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result: buffer,
    	}
    }
    
    // NewFixedBuilder creates a Builder that appends its output into the given
    // buffer. This builder does not reallocate the output buffer. Writes that
    // would exceed the buffer's capacity are treated as an error.
    func NewFixedBuilder(buffer []byte) *Builder {
    	return &Builder{
    		result:    buffer,
    		fixedSize: true,
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    func (b *Builder) NamespaceParam(namespace string) *Builder {
    	b.namespace = namespace
    	return b
    }
    
    // DefaultNamespace instructs the builder to set the namespace value for any object found
    // to NamespaceParam() if empty.
    func (b *Builder) DefaultNamespace() *Builder {
    	b.defaultNamespace = true
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top