Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 522 for descriptor (0.16 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadSerializerObjectInputStream.java

            Class<?> aClass = readClass();
            ObjectStreamClass descriptor = ObjectStreamClass.lookupAny(aClass);
            if (descriptor == null) {
                throw new ClassNotFoundException(aClass.getName());
            }
            return descriptor;
        }
    
        @Override
        protected Class<?> resolveClass(ObjectStreamClass desc) throws IOException, ClassNotFoundException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyMetadata.java

        }
    
        public ModuleDependencyMetadata withDescriptor(IvyDependencyDescriptor descriptor) {
            return new IvyDependencyMetadata(configuration, descriptor, getReason(), isEndorsingStrictVersions(), dependencyDescriptor.getConfigurationArtifacts(configuration));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestListenerIntegrationTest.groovy

                        }
                    }
                }
                tasks.test {
                    onOutput(
                        KotlinClosure2<TestDescriptor, TestOutputEvent, Any>({ descriptor, event ->
                            println("onOutput:" + descriptor.displayName + ":" + event.message)
                        })
                    )
                }
                ${mavenCentralRepository(GradleDsl.KOTLIN)}
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/WorkItemProgressEventCrossVersionSpec.groovy

                !successful
                assertIsWorkItem()
                descriptor.className == "org.gradle.test.TestWork"
                failures.size() == 1
                with (failures[0]) {
                    message == "something went horribly wrong"
                    description.startsWith("java.lang.IllegalStateException: something went horribly wrong")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.descriptors.components
    
    import org.jetbrains.kotlin.analysis.api.components.KaCompilationResult
    import org.jetbrains.kotlin.analysis.api.components.KaCompilerFacility
    import org.jetbrains.kotlin.analysis.api.components.KaCompilerTarget
    import org.jetbrains.kotlin.analysis.api.descriptors.Fe10AnalysisFacade.AnalysisMode
    import org.jetbrains.kotlin.analysis.api.descriptors.KaFe10Session
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

            val descriptor = RawPluginDescriptor()
            PluginXmlPathResolver.DEFAULT_PATH_RESOLVER.resolvePath(
                readContext = ReadContext,
                dataLoader = ResourceDataLoader(designation.classLoader),
                relativePath = designation.relativePath,
                readInto = descriptor,
            )
    
            descriptor
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/runtime/debug/stack.go

    func SetCrashOutput(f *os.File, opts CrashOptions) error {
    	fd := ^uintptr(0)
    	if f != nil {
    		// The runtime will write to this file descriptor from
    		// low-level routines during a panic, possibly without
    		// a G, so we must call f.Fd() eagerly. This creates a
    		// danger that that the file descriptor is no longer
    		// valid at the time of the write, because the caller
    		// (incorrectly) called f.Close() and the kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. api/maven-api-plugin/pom.xml

        <artifactId>maven-api</artifactId>
        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api-plugin</artifactId>
    
      <name>Maven 4 API :: Plugin</name>
      <description>Maven 4 API - Immutable Plugin model.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-meta</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

    abstract class ModelNodeInternal implements MutableModelNode {
        protected final ModelRegistryInternal modelRegistry;
        private final ModelPath path;
        private final ModelRuleDescriptor descriptor;
    
        private Set<ModelNodeInternal> dependencies;
        private Set<ModelNodeInternal> dependents;
        private ModelNode.State state = ModelNode.State.Registered;
        private boolean hidden;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsParallelIntegrationTest.groovy

                    @Override
                    void onFinish(FinishEvent event) {
                        if (event instanceof TaskFinishEvent) {
                            ${server.callFromBuildUsingExpression("parameters.prefix.get() + event.descriptor.taskPath")}
                        } else {
                            throw new IllegalArgumentException()
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top