Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,097 for T_nested (0.13 sec)

  1. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExampleExtension.java

    package com.example;
    
    import org.gradle.api.Action;
    import org.gradle.api.tasks.Nested;
    
    /**
     * Extension or domain object that can have dependencies.
     */
    public interface ExampleExtension {
        // tag::dependencies-accessors[]
        /**
         * Custom dependencies for this extension.
         */
        @Nested
        ExampleDependencies getDependencies();
    
        /**
         * Configurable block
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 20:29:08 UTC 2024
    - 553 bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/groovy/buildSrc/src/main/java/org/myorg/SiteExtension.java

    import org.gradle.api.Action;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Nested;
    
    // tag::snippet[]
    abstract public class SiteExtension {
    
        abstract public RegularFileProperty getOutputDir();
    
        @Nested
        abstract public SiteInfo getSiteInfo();
    
        public void siteInfo(Action<? super SiteInfo> action) {
            action.execute(getSiteInfo());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 474 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/pluginExtension/kotlin/buildSrc/src/main/java/org/myorg/SiteExtension.java

    import org.gradle.api.Action;
    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.Nested;
    
    // tag::snippet[]
    abstract public class SiteExtension {
    
        abstract public RegularFileProperty getOutputDir();
    
        @Nested
        abstract public SiteInfo getSiteInfo();
    
        public void siteInfo(Action<? super SiteInfo> action) {
            action.execute(getSiteInfo());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 474 bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

            getCallableSignatures(names.toList())
        }
    
        /**
         * Return a sequence of [KaClassifierSymbol] which current scope contain if classifier name matches [nameFilter]. The sequence includes:
         * nested classes, inner classes, nested type aliases for the class scope, and top-level classes and top-level type aliases for file scope.
         *
         * This function needs to retrieve a set of all possible names before processing the scope.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyKotlinInterOpIntegrationTest.groovy

                import ${DefaultTask.name}
                import ${RegularFileProperty.name}
                import ${TaskAction.name}
                import ${Nested.name}
    
                open class ProducerTask: DefaultTask() {
                    @Nested
                    val params: Params = project.objects.newInstance(Params::class.java)
    
                    @TaskAction
                    fun run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                    }
            """
            file("included/settings.gradle") << """
                rootProject.name = 'included'
                includeBuild '../nested'
            """
    
            file("nested/build.gradle") << """
                group = 'com.acme'
                version = '0.x'
    
                configurations {
                        create 'default'
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java

      }
    
      public void testSetFuture() throws Exception {
        SettableFuture<String> future = SettableFuture.create();
        SettableFuture<String> nested = SettableFuture.create();
        assertTrue(future.setFuture(nested));
        // Later attempts to set the future should return false.
        assertFalse(future.set("x"));
        assertFalse(future.setException(new Exception("bar")));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. src/net/error_test.go

    		context.DeadlineExceeded, context.Canceled:
    		return nil
    	}
    	return fmt.Errorf("unexpected type on 2nd nested level: %T", nestedErr)
    
    third:
    	if isPlatformError(nestedErr) {
    		return nil
    	}
    	return fmt.Errorf("unexpected type on 3rd nested level: %T", nestedErr)
    }
    
    var dialErrorTests = []struct {
    	network, address string
    }{
    	{"foo", ""},
    	{"bar", "baz"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/ClassGenerator.java

        interface SerializationConstructor<T> {
            /**
             * Creates a new instance, using the given services and parameters. Uses the given instantiator to create nested objects, if required.
             */
            T newInstance(ServiceLookup services, InstanceGenerator nested) throws InvocationTargetException, IllegalAccessException, InstantiationException;
        }
    
        interface GeneratedConstructor<T> {
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top