Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for honoured (0.28 sec)

  1. pkg/kube/inject/testdata/inject/proxy-override.yaml

                    command: ["sleep", "10"]
              securityContext:
                allowPrivilegeEscalation: true
                readOnlyRootFilesystem: false
                # These should not be removed or ignored, should be honored
                runAsUser: 1234
                runAsGroup: 1234
          volumes:
            - name: certs
              secret:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKeyTest.kt

    import org.junit.Rule
    import org.junit.Test
    
    
    class ConfigurationCacheKeyTest {
    
        @JvmField
        @Rule
        val testDirectoryProvider = TestNameTestDirectoryProvider(javaClass)
    
        @Test
        fun `cache key honours --include-build`() {
            assertThat(
                cacheKeyStringFromStartParameter {
                    includeBuild(file("included"))
                },
                equalTo(
                    cacheKeyStringFromStartParameter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/GradleConfigurabilityIntegrationSpec.groovy

        }
    
        def "honours jvm sys property that contain a space in gradle.properties"() {
            given:
            file("gradle.properties") << 'org.gradle.jvmargs=-Dsome-prop="i have space"'
    
            expect:
            buildSucceeds """
    assert providers.systemProperty('some-prop').get() == 'i have space'
            """
        }
    
        def "honours jvm option that contain a space in gradle.properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top