Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 806 for TestTd (0.1 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/SampleRuleTest.groovy

            "sub/sample/kotlin/"        | "sample"
            "sub/sample/nested"         | "nested"
            "sub/sample/nested/"        | "nested"
            "sub/sample/nested/groovy"  | "nested"
            "sub/sample/nested/groovy/" | "nested"
            "sub/sample/nested/kotlin"  | "nested"
            "sub/sample/nested/kotlin/" | "nested"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedCodecTest.groovy

                encoder.encodeChunked { Encoder nested ->
                    nested.writeSmallInt(12)
                    nested.writeString("chunked")
                }
                encoder.writeString("done")
            }
    
            then:
            decode(bytes) { Decoder decoder ->
                decoder.decodeChunked { Decoder nested ->
                    assert nested.readSmallInt() == 12
                    assert nested.readString() == "chunked"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/types_test.go

    	nestedFieldType, found := rt.FindFieldType("CustomObject", "nested")
    	if !found {
    		t.Fatal("got field not found for 'CustomObject.nested', wanted found")
    	}
    	if nestedFieldType.Type.GetMessageType() != "CustomObject.nested" {
    		t.Errorf("got field type %v, wanted mock_template.nested", nestedFieldType.Type)
    	}
    	subnameFieldType, found := rt.FindFieldType("CustomObject.nested", "subname")
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/nested-fwd/bbb/file.go

    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-sub"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-both"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-sub"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 563 bytes
    - Viewed (0)
  5. pkg/volume/util/nested_volumes.go

    			// Because of this, we should use a list of previously mounted mountpoints, rather than only one.
    			prevNestedMPs := []string{}
    			// examine each mount point to see if it's nested beneath this volume
    			// (but skip any that are double-nested beneath this volume)
    			// For example, if this volume is mounted as /dir and other volumes are mounted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    go list -f $MODFMT example.net/ambiguous/nested/pkg
    stdout '^example.net/ambiguous/nested v0\.1\.0$'
    ! stderr .
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout all-m.txt
    
    ! go list -f $MODFMT example.net/ambiguous/nested/pkg
    stderr '^ambiguous import: found package example\.net/ambiguous/nested/pkg in multiple modules:\n\texample\.net/ambiguous v0\.1\.0 \(.*\)\n\texample\.net/ambiguous/nested v0\.1\.0 \(.*\)\n'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    go get example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    stdout '^example.net/ambiguous v0.1.0$'
    ! stdout '^example.net/ambiguous/nested '
    
    
    # The user should be able to make the command unambiguous by explicitly
    # upgrading the conflicting module...
    
    go get example.net/ambiguous@v0.2.0 example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    stdout '^example.net/ambiguous/nested v0.1.0$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

                listOf(arrayOf("settings.gradle"), arrayOf("settings.gradle.kts"))
        }
    
        @Test
        fun `given a script file under a nested project it should return the nested project root`() {
    
            withFolders {
                "root" {
                    "nested-project-root" {
                        // a nested project is detected by the presence of a settings file
                        withFile(settingsFileName)
                        "sub-project" {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        @Override
        boolean hasOutput(long classId, long testId, TestOutputEvent.Destination destination) {
            testClasses[classId]?.outputEvents?.find { it.testId == testId && it.testOutputEvent.destination == destination }
        }
    
        static class BuildableOutputEvent {
            long testId
            TestOutputEvent testOutputEvent
    
            BuildableOutputEvent(long testId, TestOutputEvent testOutputEvent) {
                this.testId = testId
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

        }
    
        @Override
        public final void output(Object testId, TestOutputEvent event) {
            delegate.output(findDescriptor(testId), event);
        }
    
        private TestDescriptorInternal findDescriptor(Object testId) {
            TestState state = executing.get(testId);
            if (state != null) {
                return state.test;
            }
    
            if (currentParent != null) {
                return currentParent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top