Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,334 for descriptor (0.39 sec)

  1. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            then:
            inEar("META-INF/myapp.xml").text == TEST_APP_XML
        }
    
        def "can configure deployment descriptor using an Action"() {
            when:
            project.pluginManager.apply(EarPlugin)
            project.convention.plugins.ear.deploymentDescriptor( { DeploymentDescriptor descriptor ->
                descriptor.fileName = "myapp.xml"
            } as Action<DeploymentDescriptor> )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.pb.go

    	p := new(Version)
    	*p = x
    	return p
    }
    
    func (x Version) String() string {
    	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
    }
    
    func (Version) Descriptor() protoreflect.EnumDescriptor {
    	return file_zdsapi_zds_proto_enumTypes[0].Descriptor()
    }
    
    func (Version) Type() protoreflect.EnumType {
    	return &file_zdsapi_zds_proto_enumTypes[0]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                @Override
                public void start(BuildOperationDescriptor descriptor, BuildOperationState operationState) {
                    LOGGER.info("Start: {}", descriptor.getDisplayName());
                }
    
                @Override
                public void progress(BuildOperationDescriptor descriptor, String status) {
                    LOGGER.info("Progress: {}", descriptor.getDisplayName());
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

    @CacheableRule
    abstract class IvyComponentRule implements ComponentMetadataRule {
        void execute(ComponentMetadataContext context) {
            def descriptor = context.getDescriptor(IvyModuleDescriptor)
            if (descriptor != null && descriptor.branch == "testing") {
                context.details.status = "rc"
            }
        }
    }
    // end::ivy-component-metadata-rule[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

            assertEquals(1, pluginDescriptor.getDependencies().size());
    
            for (ComponentDescriptor<?> descriptor : pluginDescriptor.getComponents()) {
                assertNotNull(descriptor.getRealm());
                assertNotNull(descriptor.getImplementationClass());
            }
    
            // reload plugin realm from cache
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

        private void generateSources(ProjectDescriptor descriptor) {
            def writer = new StringWriter()
            RootProjectAccessorSourceGenerator.generateSource(
                writer,
                descriptor,
                'org.test'
            )
            def code = new GeneratedCode(descriptor.name, writer.toString())
            generatedCode[code.className] = code
            generateSubAccessors(descriptor)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            ear.assertContainsFile("META-INF/application.xml")
        }
    
        @Issue("GRADLE-3497")
        def "does not fail when provided with an existing descriptor with security roles without description"() {
            given:
            buildScript '''
                apply plugin: 'ear'
            '''.stripIndent()
            createDir('src/main/application/META-INF') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                                                   String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/test/Task")) {
                             if (name.equals("isIncremental") && descriptor.equals("()Z") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGeneratorTest.groovy

                            String descriptor, boolean isInterface, Supplier<MethodNode> readMethodNode) {
                        if (metadata.isInstanceOf(owner, "org/gradle/api/Rule")) {
                            if (name.equals("getDescription") && descriptor.equals("()Ljava/lang/String;") && (opcode == Opcodes.INVOKEVIRTUAL || opcode == Opcodes.INVOKEINTERFACE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:21:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

            if (mojoDescriptorV4 == null) {
                synchronized (this) {
                    if (mojoDescriptorV4 == null) {
                        mojoDescriptorV4 = org.apache.maven.api.plugin.descriptor.MojoDescriptor.newBuilder()
                                .goal(goal)
                                .description(getDescription())
                                .implementation(getImplementation())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top