Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 4,817 for descriptor (0.19 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

        static class ReplacedAccessor {
            private final String name;
            private final String descriptor;
            private final BinaryCompatibility binaryCompatibility;
    
            public ReplacedAccessor(String name, String descriptor, BinaryCompatibility binaryCompatibility) {
                this.name = name;
                this.descriptor = descriptor;
                this.binaryCompatibility = binaryCompatibility;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBinder.java

                bindings.add(binding(inputReference, descriptor, false, inputBindAction));
            }
            return bindings.build();
        }
    
        private static ModelBinding binding(BindingPredicate reference, ModelRuleDescriptor descriptor, boolean writable, Action<ModelBinding> bindAction) {
            if (reference.getPath() != null) {
                return new PathBinderCreationListener(descriptor, reference, writable, bindAction);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiValueParameterSymbol.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.isEqualTo
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.pointers.KaFe10NeverRestoringSymbolPointer
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.KaFe10PsiSymbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.psiBased.base.createErrorType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestOutputListenerIntegrationTest.groovy

                    public void onOutput(TestDescriptor descriptor, TestOutputEvent event) {
                        logger.lifecycle(descriptor.toString() + " " + event.destination + " " + event.message);
                    }
                }
    
                class RemoveMeListener implements TestOutputListener {
                    public void onOutput(TestDescriptor descriptor, TestOutputEvent event) {
                        println "remove me!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                // Root project is registered when the settings are created, just need to adjust its properties
                val descriptor = rootProjectDescriptor()
                descriptor.name = rootProjectName
                descriptor.projectDir = projectDir
                buildDirs[Path.ROOT] = buildDir
            }
    
            override fun registerProject(projectPath: Path, dir: File, buildDir: File) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildOperationMapper.java

        }
    
        /**
         * Maps the descriptor for the given build operation.
         */
        TO createDescriptor(DETAILS details, BuildOperationDescriptor buildOperation, @Nullable OperationIdentifier parent);
    
        /**
         * Maps the start event for the given build operation.
         */
        InternalOperationStartedProgressEvent createStartedEvent(TO descriptor, DETAILS details, OperationStartEvent startEvent);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/IvyPluginPublishingPlugin.java

            publication.descriptor(new Action<IvyModuleDescriptorSpec>() {
                @Override
                public void execute(IvyModuleDescriptorSpec descriptor) {
                    descriptor.description(new Action<IvyModuleDescriptorDescription>() {
                        @Override
                        public void execute(IvyModuleDescriptorDescription description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/Exclude.java

    import java.util.Set;
    
    /**
     * Represents the Ivy descriptor representation of an exclude.
     * In an Ivy descriptor, and exclude can apply to a number of configurations.
     */
    public interface Exclude extends ExcludeMetadata {
        /**
         * The configurations that this exclude will apply to.
         * NOTE: only supported for exclude rules sourced from an Ivy module descriptor (ivy.xml).
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/download/internal/DefaultFileDownloadOperationDescriptor.java

        private final URI uri;
    
        public DefaultFileDownloadOperationDescriptor(InternalFileDownloadDescriptor descriptor, OperationDescriptor parent) {
            super(descriptor, parent);
            this.uri = descriptor.getUri();
        }
    
        public DefaultFileDownloadOperationDescriptor(String name, URI uri, OperationDescriptor parent) {
            super(name, name, parent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/WorkItemOperationMapper.java

            return new DefaultOperationStartedProgressEvent(startEvent.getStartTime(), descriptor);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top