Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 166 for honoured (0.69 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/extension/StrictCompileExtension.kt

     */
    package gradlebuild.jvm.extension
    
    import org.gradle.api.tasks.TaskContainer
    import org.gradle.api.tasks.compile.JavaCompile
    import org.gradle.kotlin.dsl.*
    
    
    /**
     * Strict compilation options honored by [gradlebuild.Strict_compile_gradle].
     */
    abstract class StrictCompileExtension(val tasks: TaskContainer) {
    
        fun ignoreDeprecations() {
            tasks.withType<JavaCompile>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceSpec.java

         *
         * <p>
         * IMPORTANT: the build service must be explicitly registered with every using task via {@link org.gradle.api.Task#usesService(Provider) Task#usesService}
         * for this constraint to be honored.
         * </p>
         *
         * @see org.gradle.api.Task#usesService(Provider)
         */
        Property<Integer> getMaxParallelUsages();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 18:14:53 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirIntegrationTest.groovy

            when:
            configurationCacheRun 'help'
    
            then:
            file('.gradle/configuration-cache').isDirectory()
        }
    
        def "configuration cache honours --project-cache-dir"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun 'help', '--project-cache-dir', 'custom-cache-dir'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceRegistration.java

         *
         * <p>
         * IMPORTANT: the build service must be explicitly registered with every using task via {@link org.gradle.api.Task#usesService(Provider) Task#usesService}
         * for this constraint to be honored.
         * </p>
         *
         * @see org.gradle.api.Task#usesService(Provider)
         */
        Property<Integer> getMaxParallelUsages();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 18:14:53 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. src/compress/testdata/gettysburg.txt

    unfinished work which they who fought here have thus far so
    nobly advanced.  It is rather for us to be here dedicated to
    the great task remaining before us - that from these honored
    dead we take increased devotion to that cause for which they
    gave the last full measure of devotion -
      that we here highly resolve that these dead shall not have
    died in vain - that this nation, under God, shall have a new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/testing/fake_test.go

    // (I am unsure if this test has any value since it only tests the fake implementation)
    func TestSetGetLocalAddresses(t *testing.T) {
    	fake := NewFakeNetlinkHandle(false)
    	_ = ipvs.NetLinkHandle(fake) // Ensure that the interface is honored
    	fake.SetLocalAddresses("eth0", "1.2.3.4")
    	var expected, addr sets.Set[string]
    	expected = sets.New("1.2.3.4")
    	addr, _ = fake.GetLocalAddresses("eth0")
    	if !addr.Equal(expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/GradlePropertiesToolingApiCrossVersionSpec.groovy

        def setup() {
            //this test does not make any sense in embedded mode
            //as we don't own the process
            toolingApi.requireDaemons()
        }
    
        def "tooling api honours jvm args specified in gradle.properties"() {
            file('build.gradle') << """
    assert java.lang.management.ManagementFactory.runtimeMXBean.inputArguments.contains('-Xmx62m')
    assert System.getProperty('some-prop') == 'some-value'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/cgo/linux_syscall.c

    #include <sys/types.h>
    #include <unistd.h>
    #include <errno.h>
    #include "libcgo.h"
    
    /*
     * Assumed POSIX compliant libc system call wrappers. For linux, the
     * glibc/nptl/setxid mechanism ensures that POSIX semantics are
     * honored for all pthreads (by default), and this in turn with cgo
     * ensures that all Go threads launched with cgo are kept in sync for
     * these function calls.
     */
    
    // argset_t matches runtime/cgocall.go:argset.
    typedef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/MaxWorkersIntegrationTest.groovy

    import org.gradle.internal.operations.RunnableBuildOperation
    import org.gradle.internal.work.WorkerLeaseService
    
    class MaxWorkersIntegrationTest extends AbstractIntegrationSpec {
        def "max workers is honored when it changes between invocations"() {
            buildFile << """
                import ${WorkerLeaseService.class.name}
                import ${BuildOperationExecutor.class.name}
                import ${RunnableBuildOperation.class.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

            assert eclipseProject.projectDependencies.size() == 1
            with(eclipseProject.projectDependencies.first()) {
                it.path == 'b1'
            }
        }
    
        def "EclipseProject model honours custom project name"() {
            when:
            buildB.buildFile << """
                subprojects {
                    apply plugin: 'eclipse'
                    eclipse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top