Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for TestTd (0.22 sec)

  1. src/encoding/xml/marshal_test.go

    			},
    		},
    		ExpectXML: `<a><nested><value>known</value></nested><AnyField><unknown/></AnyField></a>`,
    	},
    	{
    		ExpectXML: `<a><nested><value>b</value></nested></a>`,
    		Value: &AnyOmitTest{
    			Nested: "b",
    		},
    	},
    	{
    		ExpectXML: `<a><nested><value>b</value></nested><c><d>e</d></c><g xmlns="f"><h>i</h></g></a>`,
    		Value: &AnySliceTest{
    			Nested: "b",
    			AnyField: []AnyHolder{
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  2. internal/s3select/select_test.go

    			wantResult: `{"nested":[[2,3,4],[7,8.5,9]]}`,
    		},
    		{
    			name:       "select-in-combine-and-no",
    			query:      `SELECT s.nested from s3object s WHERE (8.5 IN s.nested[*][*]) AND (s.id = 0)`,
    			wantResult: ``,
    		},
    		{
    			name:       "select-in-nested-float-no-flat",
    			query:      `SELECT s.nested from s3object s WHERE 8.5 IN s.nested[*]`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            result.groupedOutput.transform("MakeGreen", "nested-producer.jar (project :included:nested-producer)")
                .assertOutputContains("processing [nested-producer.jar]")
    
            result.groupedOutput.task(":consumer:resolve")
                .assertOutputContains("result = [producer.jar.green, nested-producer.jar.green]")
    
            // Included build runs a single task and no transforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    							path:   "/nested-key1",
    							allow:  true,
    						},
    						{
    							prefix: "[NestedToken2]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims2,
    							path:   "/nested-key1",
    							allow:  false,
    						},
    						{
    							prefix: "[NestedToken1]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims1,
    							path:   "/nested-key2",
    							allow:  false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K 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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_nested_inputs]]
    === Nested inputs
    
    When analyzing `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` task properties for declared input and output sub-properties Gradle uses the type of the actual value.
    Hence it can discover all sub-properties declared by a runtime sub-type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        private ImportNode currImportNode;
        private MethodNode currentMethod;
        private ClassNodeResolver classNodeResolver;
    
        /**
         * A ConstructedNestedClass consists of an outer class and a name part, denoting a nested class with an unknown number of levels down. This allows resolve tests to skip this node for further inner
         * class searches and combinations with imports, since the outer class we know is already resolved.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

        public interface InterfaceNestedBean {
            @Nested
            InterfaceFileCollectionBean getFilesBean();
    
            @Nested
            InterfacePropertyBean getPropBean();
        }
    
        public static abstract class NestedBeanClassWithToString {
            @Override
            public String toString() {
                return "<some bean>";
            }
    
            @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.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: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.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: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top