Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 806 for TestTd (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                }
    
                class DefaultCompositeModel implements java.io.Serializable {
                    private final DefaultModel nested
                    DefaultCompositeModel(DefaultModel nested) { this.nested = nested }
                    BaseModel getNested() { nested }
                }
            """
        }
    
        def "supports model polymorphism"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestResult.java

        }
    
        public String getTestClass() {
            return testClass;
        }
    
        public void setTestClass(String testClass) {
            this.testClass = testClass;
        }
    
        public String getTestId() {
            return testId;
        }
    
        public void setTestId(String testId) {
            this.testId = testId;
        }
    
        public String getTestProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ClassBytesRepositoryTest.kt

            )
    
            assertClassFilePathCandidatesFor(
                "foo.My.Nested",
                listOf(
                    "foo/My/Nested.class", "foo/My/NestedKt.class",
                    "foo/My${'$'}Nested.class", "foo/My${'$'}NestedKt.class",
                    "foo${'$'}My${'$'}Nested.class", "foo${'$'}My${'$'}NestedKt.class"
                )
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.net_ambiguous_v0.1.0.txt

    Test module containing a package that is also provided by a nested module tagged
    with the same version.
    
    -- .mod --
    module example.net/ambiguous
    
    go 1.16
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.net/ambiguous
    
    go 1.16
    -- nested/pkg/pkg.go --
    // Package pkg exists in both example.net/ambiguous v0.1.0
    // and example.net/ambiguous/nested v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 395 bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/TestScenarioSelector.java

        private static final String TEST_PROJECT_PROPERTY_NAME = "org.gradle.performance.testProject";
    
        public static boolean shouldRun(String testId) {
            if (testId.contains(";")) {
                throw new IllegalArgumentException("Test ID cannot contain ';', but was '" + testId + "'");
            }
            String scenarioProperty = System.getProperty("org.gradle.performance.scenarios", "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/ManifestUtilTest.groovy

            def file2 = tmpDir.file('different/nested/jar2.jar')
    
            then:
            ManifestUtil.createManifestClasspath(jarFile, [file1, file2]) == "${tmpDirPath}different/jar1.jar ${tmpDirPath}different/nested/jar2.jar"
        }
    
        def "url encodes spaces in manifest classpath"() {
            when:
            def classpathFiles = [tmpDir.file('mydir/jar one.jar'), tmpDir.file('mydir/nested dir/jar two.jar')]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top