Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 635 for TestTd (0.34 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

              notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
            - key: "request.auth.claims[nested1][nested2]"
              values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
              notValues: ["not-nested", "not-nested-prefix-*", "*-not-suffix-nested", "*"]
            - key: "destination.ip"
              values: ["10.10.10.10", "192.168.10.0/24"]
              notValues: ["90.10.10.10", "90.168.10.0/24"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGenerator.java

        }
    
        @Override
        public void completed(Object testId, TestCompleteEvent event) {
            currentTests.remove(testId);
            resultProcessor.completed(testId, event);
        }
    
        @Override
        public void output(Object testId, TestOutputEvent event) {
            resultProcessor.output(testId, event);
        }
    
        @Override
        public void failure(Object testId, TestFailure result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:24 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/readOnlyNestedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.TaskAction;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Nested
        public abstract Resource getResource(); // Use an abstract getter method annotated with @Nested
    
        @TaskAction
        void run() {
            // Use the `resource` property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 522 bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisScriptSourceModuleReferenceShortenerTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.references.AbstractReferenceShortenerTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

            withIsolatedProjects()
            def models = runBuildAction(new FetchCustomModelForSameProjectInParallel())
    
            then:
            // Ensure nested requests are all executed and not cached individually
            outputContains("Executing nested-1")
            outputContains("Executing nested-2")
    
            and:
            models.size == 2
            models[0].message == "It works from project :"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/requestauthn/authn-only.yaml.tmpl

        outputPayloadToHeader: "x-test-payload"
        outputClaimToHeaders:
        - header: "x-jwt-iss"
          claim: "iss"
        - header: "x-jwt-iat"
          claim: "iat"
        - header: "x-jwt-nested-claim"
          claim: "nested.nested-2.key2"
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 725 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting_test.go

    		"nested": map[string]interface{}{
    			"small": 500,
    		}}, map[string]interface{}{
    		"nested": map[string]interface{}{
    			"small": 500,
    		}}, validation.WithRatcheting(nil)).IsValid())
    	assert.True(t, validator.ValidateUpdate(map[string]interface{}{
    		"nested": map[string]interface{}{
    			"small": 501,
    		}}, map[string]interface{}{
    		"nested": map[string]interface{}{
    			"small":  501,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:20:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

        }
    
        /**
         * Sets build name to use for the nested build.
         *
         * @param buildName the build name to use for the nested build
         * @since 6.0
         */
        public void setBuildName(String buildName) {
            this.buildName = buildName;
        }
    
        @TaskAction
        void build() {
            // TODO: Allow us to inject plugins into nested builds too.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            createDirs("a", "nested")
            settingsFile << """
                include "a"
                includeBuild "nested"
    
                rootProject.name = "root"
                rootProject.buildFileName = 'root.gradle'
    
            """
    
            def nestedSettingsFile = file("nested/settings.gradle")
            nestedSettingsFile << """
                rootProject.name = "nested"
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

          notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
      - when:
        - key: "request.auth.claims[nested1][nested2]"
          values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
          notValues: ["not-nested", "not-nested-prefix-*", "*-not-suffix-nested", "*"]
      - when:
        - key: "destination.ip"
          values: ["10.10.10.10", "192.168.10.0/24"]
          notValues: ["90.10.10.10", "90.168.10.0/24"]
      - when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top