Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,613 for resources2 (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/build-resource-only-dll.gradle

    plugins {
        id 'windows-resources'
    }
    
    // tag::resource-only-library[]
    model {
        components {
            helloRes(NativeLibrarySpec) {
                binaries.all {
                    rcCompiler.args "/v"
                    linker.args "/noentry", "/machine:x86"
                }
                // tag::windows-resource-set[]
                sources {
                    rc {
                        source {
                            srcDirs "src/hello/rc"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 690 bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

            scala.include "org/gradle/\$name/**/*.scala"
        }
    }
    """
            file('src/org/gradle/main/resource.txt') << 'some text'
            file('src/org/gradle/test/resource.txt') << 'some text'
            file('src/resources/org/gradle/main/resource2.txt') << 'some text'
            file('src/resources/org/gradle/test/resource2.txt') << 'some text'
            file('src/org/gradle/main/JavaClass.java') << 'package org.gradle; public class JavaClass { }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java-library/quickstart/groovy/src/main/resources/org/gradle/resource.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/src/main/resources/resource.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/buildSrc/src/main/java/Resource.java

    import org.gradle.api.provider.Property;
    import java.net.URI;
    // tag::resource[]
    
    public interface Resource {
        // Type must have a read-only 'name' property
        String getName();
    
        Property<URI> getUri();
    
        Property<String> getUserName();
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 269 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/kotlin/api/src/main/resources/org/gradle/resource.txt

    Laura Kassovic <******@****.***> 1706138984 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/services/person-service/src/main/resources/org/gradle/resource.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/src/main/resources/org/gradle/resource.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/src/main/resources/org/gradle/resource.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15 bytes
    - Viewed (0)
  10. pilot/pkg/status/resource.go

    func ResourceFromMetadata(i resource.Metadata) Resource {
    	return Resource{
    		GroupVersionResource: i.Schema.GroupVersionResource(),
    		Namespace:            i.FullName.Namespace.String(),
    		Name:                 i.FullName.Name.String(),
    		Generation:           strconv.FormatInt(i.Generation, 10),
    	}
    }
    
    func ResourceFromModelConfig(c config.Config) Resource {
    	gvr, ok := gvk.ToGVR(c.GroupVersionKind)
    	if !ok {
    		return Resource{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 30 16:13:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top