Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 99 for Parts (0.98 sec)

  1. src/cmd/compile/internal/ssa/expand_calls.go

    }
    
    func expandCalls(f *Func) {
    	// Convert each aggregate arg to a call into "dismantle aggregate, store/pass parts"
    	// Convert each aggregate result from a call into "assemble aggregate from parts"
    	// Convert each multivalue exit into "dismantle aggregate, store/return parts"
    	// Convert incoming aggregate arg into assembly of parts.
    	// Feed modified AST to decompose.
    
    	sp, _ := f.spSb()
    
    	x := &expandState{
    		f:               f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLoggerManager.java

    import org.slf4j.ILoggerFactory;
    import org.slf4j.LoggerFactory;
    
    /**
     * Use an SLF4J {@link org.slf4j.ILoggerFactory} as a backing for a Plexus
     * {@link org.codehaus.plexus.logging.LoggerManager},
     * ignoring Plexus logger API parts that are not classical and probably not really used.
     *
     * @since 3.1
     */
    public class Slf4jLoggerManager implements LoggerManager {
    
        private ILoggerFactory loggerFactory;
    
        public Slf4jLoggerManager() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/logging/Slf4jLogger.java

     * under the License.
     */
    package org.apache.maven.cli.logging;
    
    import org.codehaus.plexus.logging.Logger;
    
    /**
     * Adapt an SLF4J logger to a Plexus logger, ignoring Plexus logger API parts that are not classical and
     * probably not really used.
     *
     * @since 3.1.0
     */
    public class Slf4jLogger implements Logger {
    
        private org.slf4j.Logger logger;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtPsiTypeProvider.kt

                preserveAnnotations = preserveAnnotations,
            )
        }
    
        /**
         * Converts given [PsiType] to [KaType].
         *
         * [useSitePosition] may be used to clarify how to resolve some parts of [PsiType].
         * For instance, it can be used to collect type parameters and use them during the conversion.
         *
         * @receiver [PsiType] to be converted.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

         * @param root the root of the graph.
         */
        public ObjectBasedValueSource(Object root) {
            super(true);
            this.root = root;
        }
    
        /**
         * <p>Split the expression into parts, tokenized on the dot ('.') character. Then,
         * starting at the root object contained in this value source, apply each part
         * to the object graph below this root, using either 'getXXX()' or 'isXXX()'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         */
        public abstract ConfigurableFileCollection getRenderedDocumentation();
    
        // These are all helper methods for configuring the parts of the documentation (DSL ref, javadoc, user manual, etc).
        public ReleaseNotes getReleaseNotes() {
            return releaseNotes;
        }
    
        public void releaseNotes(Action<? super ReleaseNotes> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 08:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

     * classes and the classes they depend on. The classes are not relocated, they all
     * remain in their original namespace. This reduces the final Gradle distribution
     * size and makes us more conscious of which parts of a library we really need.
     */
    val keepPatterns = mapOf(
        "fastutil" to setOf(
            // For Java compilation incremental analysis
            "it.unimi.dsi.fastutil.ints.IntOpenHashSet",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/writebarrier.go

    package ssa
    
    import (
    	"cmd/compile/internal/reflectdata"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"internal/buildcfg"
    )
    
    // A ZeroRegion records parts of an object which are known to be zero.
    // A ZeroRegion only applies to a single memory state.
    // Each bit in mask is set if the corresponding pointer-sized word of
    // the base object is known to be zero.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

    /**
     * Wraps an active project instance to be able to receive updates from its artifact without affecting the original
     * attributes of this artifact.
     *
     * TODO I think this exposes a design flaw in that the immutable and mutable parts of an artifact are in one class and
     * should be split. ie scope, file, etc depend on the context of use, whereas everything else is immutable.
     */
    @Deprecated
    public class ActiveProjectArtifact implements Artifact {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/offline-mode.apt

      carries out some analysis or other interaction with a SCM system
      will likely be unavailable when in offline mode.
    
    
    * Implications for Subsystems
    
    ** Maven-Wagon
    
      Parts of Wagon will continue to function normally. These include:
    
      * The file wagon, provided the referenced location is on a local
        filesystem.
    
        It is not possible to determine whether a file-based location will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top