Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for honoured (0.14 sec)

  1. releasenotes/notes/alt-stat-name.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 10:09:31 UTC 2024
    - 184 bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    		},
    		{
    			description:     "seccomp field defined at pod level should not be honoured",
    			pod:             newSeccompPod(&v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}, nil, "", ""),
    			expectedProfile: v1.SeccompProfileTypeRuntimeDefault,
    		},
    		{
    			description:     "seccomp field defined at container level should not be honoured",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/registry/certificates/certificates/storage/metrics_test.go

    			if got := testHon.signer; tt.wantHonored && tt.wantSigner != got {
    				t.Errorf("honored signer: want %v, got %v", tt.wantSigner, got)
    			}
    
    			if got := testReq.called; tt.wantRequested != got {
    				t.Errorf("requested inc: want %v, got %v", tt.wantRequested, got)
    			}
    
    			if got := testHon.called; tt.wantHonored != got {
    				t.Errorf("honored inc: want %v, got %v", tt.wantHonored, got)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/PersistentCompositeDependencySubstitutionCrossVersionSpec.groovy

            then:
            assert eclipseProject.classpath.empty
            eclipseProject.projectDependencies.collect {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
    - 8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                blockingServer.expectConcurrent(":b:cPing")
                run ":a:aPing", ":b:cPing"
            }
        }
    
        def "explicit task dependency relationships are honored even if it violates destroys/creates/consumes relationships"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def foo = file("foo")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

    import org.gradle.launcher.exec.BuildActionResult;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    public class SingleUseDaemonClient extends DaemonClient {
        public static final String MESSAGE = "To honour the JVM settings for this build a single-use Daemon process will be forked.";
        private static final Logger LOGGER = Logging.getLogger(SingleUseDaemonClient.class);
        private final DocumentationRegistry documentationRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. internal/http/listener.go

    }
    
    // TCPOptions specify customizable TCP optimizations on raw socket
    type TCPOptions struct {
    	UserTimeout int // this value is expected to be in milliseconds
    
    	// When the net.Conn is a remote drive this value is honored, we close the connection to remote peer proactively.
    	DriveOPTimeout func() time.Duration
    
    	SendBufSize int              // SO_SNDBUF size for the socket connection, NOTE: this sets server and client connection
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top