Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 149 for buildC (0.09 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            outputContains build.expectedPropertyOutput()
            outputDoesNotContain "GradleProperties has not been loaded yet."
    
            where:
            build << GradlePropertiesIncludedBuildFixture.builds()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19184")
        def "system properties declared in properties of composite build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

        fun `respects offline start parameter on synthetic builds for accessors generation`() {
    
            file("settings.gradle.kts").appendText("""include("producer", "consumer")""")
    
            withKotlinDslPluginIn("producer")
            withFile(
                "producer/src/main/kotlin/offline.gradle.kts", """
                if (!gradle.startParameter.isOffline) throw IllegalStateException("Build is not offline!")
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-task-execution-build-scan.png

    troubleshooting-task-execution-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                        """
                    )
                }
                build("assemble")
            }
    
            val externalFoo = existing("external-plugins/external-foo/build/libs/external-foo.jar")
            val externalBar = existing("external-plugins/external-bar/build/libs/external-bar.jar")
    
            withFolders {
                "buildSrc" {
                    "local-foo" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                println "user home dir: " + gradle.gradleUserHomeDir
                println "build script code source: " + getClass().protectionDomain.codeSource.location
            '''
    
            when:
            run 'otherBuild'
    
            then:
            output.contains("user home dir: $dir")
            output.contains("build script code source: ${dir.toURI()}")
        }
    
        def "nested build can have buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-dependency-management-build-scan.png

    troubleshooting-dependency-management-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  9. docs/en/docs/contributing.md

    To do that, first build all the docs:
    
    <div class="termy">
    
    ```console
    // Use the command "build-all", this will take a bit
    $ python ./scripts/docs.py build-all
    
    Building docs for: en
    Building docs for: es
    Successfully built docs for: es
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r112/BuildInvocationsCrossVersionSpec.groovy

                it.forLaunchables(taskT1, selectorT1, selectorT2, taskBT2)
            }
            then:
            result.result.assertTasksExecutedInOrder(':t1', ':b:c:t1', ':b:t2', ':b:c:t2')
        }
    
        def "builds selectors from different projects"() {
            when:
            BuildInvocations rootSelectors = withConnection { connection ->
                connection.action(new FetchTaskSelectorsBuildAction('test')).run()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top