Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for honoured (0.23 sec)

  1. 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)
  2. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,6,rep,name=extra"`
    }
    
    // Built in signerName values that are honoured by kube-controller-manager.
    // None of these usages are related to ServiceAccount token secrets
    // `.data[ca.crt]` in any way.
    const (
    	// Signs certificates that will be honored as client-certs by the
    	// kube-apiserver. Never auto-approved by kube-controller-manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  3. pkg/apis/certificates/types.go

    	// +optional
    	Extra map[string]ExtraValue
    }
    
    // Built in signerName values that are honoured by kube-controller-manager.
    // None of these usages are related to ServiceAccount token secrets
    // `.data[ca.crt]` in any way.
    const (
    	// Signs certificates that will be honored as client-certs by the
    	// kube-apiserver. Never auto-approved by kube-controller-manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarIntegrationTest.groovy

                }
            }
            '''
    
            when:
            run 'jar'
    
            then:
            confirmDuplicateServicesPreserved()
        }
    
        def "changes to manifest attributes should be honoured by incremental build"() {
            given:
            def jarWithManifest = { manifest ->
                """
                task jar(type: Jar) {
                    from 'test'
                    destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

                        doLast {
                            def files = configurations.compile.files
                            assert files*.name.sort() == ["api.jar"] // Late dependency is not honoured
                            assert files*.exists() == [ true ]
                        }
                    }
                }
    """
    
            when:
            fails("impl:modifyConfigDuringTaskExecution")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task d = task("d", dependsOn: [c])
    
            when:
            addToGraphAndPopulate(toList(d))
    
            then:
            executes(a, b, c, d)
        }
    
        def "#orderingRule ordering is honoured for tasks added separately to graph"() {
            Task a = task("a")
            Task b = task("b", dependsOn: [a])
            Task c = task("c", (orderingRule): [b])
    
            when:
            addToGraph([c])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                        assert classpath.empty
                    }
                }
            """
    
            expect:
            succeeds("test")
        }
    
        def "configuring test framework on built-in test suite is honored in task and dependencies with JUnit"() {
            buildFile << """
                plugins {
                    id 'java'
                }
    
                ${mavenCentralRepository()}
    
                testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributesSchemaTest.groovy

            then:
            def e = thrown(IllegalArgumentException)
            e.message == "Attribute 'a' precedence has already been set."
        }
    
        def "precedence order is honored with merged schema"() {
            def producer = new DefaultAttributesSchema(TestUtil.instantiatorFactory(), SnapshotTestUtil.isolatableFactory())
            when:
            def x = Attribute.of("x", String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. 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)
  10. okhttp/src/test/java/okhttp3/MultipartReaderTest.kt

            source = Buffer().writeUtf8(multipart),
          )
    
        assertFailsWith<EOFException> {
          parts.nextPart()
        }
      }
    
      @Test fun `lf instead of crlf boundary is not honored`() {
        val multipart =
          """
          |--simple boundary
          |
          |abcd
          |--simple boundary
          |
          |efgh
          |--simple boundary--
          """.trimMargin()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top