Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bonjour (0.21 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            sharedLibrary(flavors.dir.file("build/libs/hello/shared/french/hello")).assertExists()
    
            and:
            installation(flavors.dir.file("build/install/main/french")).exec().out == "Bonjour monde!\n"
        }
    
        @RequiresInstalledToolChain(SUPPORTS_32_AND_64)
        @ToBeFixedForConfigurationCache
        def variants() {
            given:
            sample variants
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            install.exec().out == app.englishOutput
        }
    
        static final String DEFAULT_PCH_MESSAGE="<==== compiling hello.h ====>"
        static final String FRENCH_PCH_MESSAGE="<==== compiling bonjour.h ====>"
        static final String ALTERNATE_PCH_MESSAGE="<==== compiling alternate hello.h ====>"
    
        def preCompiledHeaderComponent(String path="", String pch="common.h") {
            """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20800")
        void 'finalizedBy dependencies can run before finalized task to honour mustRunAfter constraints'() {
            given:
            buildFile '''
                task dockerTest(type: BreakingTask) {
                    dependsOn 'dockerUp'     // dependsOn createContainer mustRunAfter removeContainer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. docs/fr/docs/index.md

    ---
    
    "_Je suis très enthousiaste à propos de **FastAPI**. C'est un bonheur !_"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

        }
    
        @Issue("gradle/gradle#3019")
        @ToBeFixedForConfigurationCache
        def "should honour changing module cache expiry for subsequent snapshot resolutions in the same build"() {
            given:
            buildFile << """
    configurations {
        fresh
        stale
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

                }
            }
        }
    
        @Issue("gradle/gradle#3019")
        @ToBeFixedForConfigurationCache(because = "Does not check for updates to remote artifact")
        def "should honour dynamic version cache expiry for subsequent resolutions in the same build"() {
            given:
            useRepository ivyHttpRepo
            buildFile << """
    configurations {
        fresh
        stale
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    		// .rdata section will contain "masks" and "shifts" symbols, and they
    		// need to be aligned to 16-bytes. So make all sections aligned
    		// to 32-byte and mark them all IMAGE_SCN_ALIGN_32BYTES so external
    		// linker will honour that requirement.
    		PESECTALIGN = 32
    		PEFILEALIGN = 0
    		// We are creating an object file. The absolute address is irrelevant.
    		PEBASE = 0
    	}
    
    	var sh [16]pe.SectionHeader32
    	var fh pe.FileHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top