Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 2,321 for buildid (0.05 seconds)

  1. models.BUILD

    package(default_visibility = ["//visibility:public"])
    
    licenses(["notice"])  # Apache 2.0
    
    filegroup(
        name = "model_files",
        srcs = glob(
            [
                "**/*",
            ],
            exclude = [
                "**/BUILD",
                "**/WORKSPACE",
                "**/LICENSE",
                "**/*.zip",
            ],
        ),
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Jan 10 22:25:53 GMT 2017
    - 328 bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/build.gradle

     * Side Public License, v 1.
     */
    
    subprojects {
        apply plugin:'base'
        tasks.register('tar', Tar) {
            from('.')
            destinationDirectory.set(file('build/distributions'))
            archiveBaseName.set("elasticsearch${project.name.startsWith('oss')?'-oss':''}")
            def versionFromBranch = calculateBranchVersion()
            archiveVersion.set("${versionFromBranch}-SNAPSHOT")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  3. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/darwin-tar/build.gradle

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 354 bytes
    - Click Count (0)
  4. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/bwc/bugfix/build.gradle

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - Click Count (0)
  5. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/bwc/major/build.gradle

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - Click Count (0)
  6. build-conventions/build.gradle

        eclipse.getClasspath().getFile().whenMerged { classpath ->
            /*
             * give each source folder a unique corresponding output folder
             * outside of the usual `build` folder. We can't put the build
             * in the usual build folder because eclipse becomes *very* sad
             * if we delete it. Which `gradlew clean` does all the time.
             */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 01 09:43:51 GMT 2021
    - 2.7K bytes
    - Click Count (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

    import org.apache.maven.internal.impl.DefaultLookup;
    import org.apache.maven.internal.impl.DefaultSession;
    import org.apache.maven.internal.impl.InternalMavenSession;
    import org.apache.maven.model.building.ModelBuildingException;
    import org.apache.maven.model.building.ModelProblem;
    import org.apache.maven.repository.RepositorySystem;
    import org.apache.maven.repository.internal.MavenRepositorySystemUtils;
    import org.apache.maven.session.scope.internal.SessionScope;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

    /**
     * Message builder that supports configurable styling.
     *
     * @since 4.0.0
     * @see MessageBuilderFactory
     */
    public interface MessageBuilder extends Appendable {
    
        /**
         * Append message content in trace style.
         * By default, bold magenta
         *
         * @param message the message to append
         * @return the current builder
         */
        @Nonnull
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Nov 02 09:29:52 GMT 2024
    - 7.6K bytes
    - Click Count (0)
  9. architecture/build-execution-model.md

    # Build execution model
    
    At the highest level, Gradle's execution model is quite simple:
    
    Below is the protocol in some more detail:
    
    1. The client looks for a compatible idle daemon. If there isn't one, it starts a new daemon.
    2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 907 bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

            .name("a")
            .value("b")
            .hostOnlyDomain("example.com")
            .secure()
            .build()
        assertThat(cookie.secure).isTrue()
      }
    
      @Test fun builderHttpOnly() {
        val cookie =
          Cookie
            .Builder()
            .name("a")
            .value("b")
            .hostOnlyDomain("example.com")
            .httpOnly()
            .build()
        assertThat(cookie.httpOnly).isTrue()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Nov 01 12:18:11 GMT 2025
    - 24.4K bytes
    - Click Count (0)
Back to Top