Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for composition (1.68 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

         *
         * The semantic of resulted [KaSubstitutor] is the substitutor that should be applied to a member of [superClass],
         * so it can be called on an instance of [subClass].
         *
         * Basically, it's a composition of inheritance-based substitutions for all the inheritance chain.
         *
         * On the following code:
         * ```
         * class A : B<String>
         * class B<T> : C<T, Int>
         * class C<X, Y>
         * ```
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/MixInClosurePropertiesAsMethodsDynamicObject.java

    import org.gradle.internal.metaobject.DynamicObjectUtil;
    
    import javax.annotation.Nullable;
    
    /**
     * Exposes methods for those properties whose value is a closure.
     *
     * TODO: use composition instead of inheritance
     */
    public abstract class MixInClosurePropertiesAsMethodsDynamicObject extends CompositeDynamicObject {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:19:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/CycleDetectedInPluginGraphException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin;
    
    import org.apache.maven.model.Plugin;
    import org.codehaus.plexus.component.composition.CycleDetectedInComponentGraphException;
    
    /**
     * Exception occurring trying to resolve a plugin.
     *
     */
    public class CycleDetectedInPluginGraphException extends Exception {
        private final Plugin plugin;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/composition/DependencyManagementImporter.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.composition;
    
    import java.util.List;
    
    import org.apache.maven.api.model.DependencyManagement;
    import org.apache.maven.api.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * @see org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProvider
     */
    public interface KotlinComposableProvider
    
    /**
     * A [KotlinCompositeProvider] is the sequential composition of a specific kind of composable provider [P].
     *
     * A composite provider should only contain providers of the same base type as the composite provider itself, so implementations of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/micromailer/pom.xml

          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-utils</artifactId>
          <version>3.3.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
    
        <!-- Mail composition -->
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-velocity</artifactId>
          <version>1.1.7</version>
          <type>jar</type>
          <scope>compile</scope>
          <exclusions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. architecture/runtimes.md

    Most source code targets the daemon and the remaining code either targets a single runtime, for example the Gradle client, or is shared across multiple runtimes.
    
    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.composition;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.*;
    
    import org.apache.maven.api.model.Dependency;
    import org.apache.maven.api.model.DependencyManagement;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/AbstractCompositeHashFunction.java

    import com.google.errorprone.annotations.Immutable;
    import java.nio.ByteBuffer;
    import java.nio.charset.Charset;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An abstract composition of multiple hash functions. {@linkplain #newHasher()} delegates to the
     * {@code Hasher} objects of the delegate hash functions, and in the end, they are used by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  10. architecture/build-state-model.md

    The project state is managed by the `ProjectState` class.
    It is created for each project in the build definition, once per build execution and is discarded at the end of the execution.
    
    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the elements.
    Not every module contributes to every element.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top