Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 510 for TestTd (0.13 sec)

  1. tests/joins_test.go

    	users := []User{
    		{
    			Name: "nested-joins-1",
    			Manager: &User{
    				Name: "nested-joins-manager-1",
    				Company: Company{
    					Name: "nested-joins-manager-company-1",
    				},
    				NamedPet: &Pet{
    					Name: "nested-joins-manager-namepet-1",
    					Toy: Toy{
    						Name: "nested-joins-manager-namepet-toy-1",
    					},
    				},
    			},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveReferenceWithResolveExtensionTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.resolver.AbstractResolveReferenceWithResolveExtensionTest;
    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: Tue Jun 04 19:03:01 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

        expectedWithoutNull:
          nonNilKey1: foo
          nonNilKey2: bar
      - description: nested map
        originalObj:
          mapKey:
            nilKey: null
            nonNilKey: foo
        expectedWithNull:
          mapKey:
            nilKey: null
        expectedWithoutNull:
          mapKey:
            nonNilKey: foo
      - description: nested map that all subkeys are nil
        originalObj:
          mapKey:
            nilKey1: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

                        // Any configuring event received from nested or buildSrc builds before the root build starts configuring is ignored
                        phaseHasMoreProgress(startEvent);
                    } else if (startEvent.getBuildOperationCategory() == BuildOperationCategory.CONFIGURE_PROJECT && currentPhase == Phase.Configuring) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    	testID := h.Sum()
    	if c.id1 == (cache.ActionID{}) {
    		c.id1 = testID
    	} else {
    		c.id2 = testID
    	}
    	if cache.DebugTest {
    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => %x\n", a.Package.ImportPath, id, testID)
    	}
    
    	// Load list of referenced environment variables and files
    	// from last run of testID, and compute hash of that content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. pkg/test/framework/suite_test.go

    func settingsFn(s *resource.Settings) func(string) (*resource.Settings, error) {
    	return func(testID string) (*resource.Settings, error) {
    		s.TestID = testID
    		s.BaseDir = os.TempDir()
    		return s, nil
    	}
    }
    
    func defaultSettingsFn(testID string) (*resource.Settings, error) {
    	s := resource.DefaultSettings()
    	s.TestID = testID
    	s.BaseDir = os.TempDir()
    
    	return s, nil
    }
    
    func cleanupRT() {
    	rtMu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/testFixtures/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeFixture.groovy

                import org.gradle.api.tasks.Nested;
    
                import javax.inject.Inject;
    
                @Restricted
                public abstract class AnotherSoftwareTypeExtension {
                    @Inject
                    public AnotherSoftwareTypeExtension() { }
    
                    @Restricted
                    public abstract Property<String> getFoo();
    
                    @Nested
                    public abstract Bar getBar();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:26 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/markers/markers.kt

         * in platform modules is expected. Note, that in the following example:
         * ```
         * expect class A {
         *     class Nested
         * }
         * ```
         * `isExpect` returns `true` for both `A` and `A.Nested`.
         */
        public val isExpect: Boolean
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

                }
            }
        }
    
        class NestedType(val root: PossiblyInnerType, val nested: List<PossiblyInnerType>) {
            val allInnerTypes: List<PossiblyInnerType>
                get() = buildList {
                    add(root)
                    addAll(nested)
                }
        }
    
        override val typeContext = KaFe10TypeSystemCommonBackendContextForTypeMapping(resolveSession)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/resolver/FirIdeNormalAnalysisSourceModuleResolveCallTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.resolver.AbstractResolveCallTest;
    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: Tue Jun 04 19:03:00 UTC 2024
    - 215.1K bytes
    - Viewed (0)
Back to top