Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 783 for Handles (0.23 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/plugin/PluginConfigurationExpander.java

     */
    package org.apache.maven.model.plugin;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportConfigurationExpander.java

     */
    package org.apache.maven.model.plugin;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles expansion of general report plugin configuration into individual report sets.
     *
     */
    public interface ReportConfigurationExpander {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PluginConfigurationExpander.java

    package org.apache.maven.api.services.model;
    
    import org.apache.maven.api.model.Model;
    import org.apache.maven.api.services.ModelBuilderRequest;
    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles expansion of general build plugin configuration into individual executions.
     *
     */
    public interface PluginConfigurationExpander {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/build/JavaEnvironment.java

         *
         * @since 1.0-milestone-8
         */
        File getJavaHome();
    
        /**
         * The JVM arguments the user has provided to start the Java process that handles Gradle operations (for example running tasks or acquiring model information). The returned arguments do not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/fuse.go

    			return false
    		}
    	}
    	return true
    }
    
    // fuseBlockPlain handles a run of blocks with length >= 2,
    // whose interior has single predecessors and successors,
    // b must be BlockPlain, allowing it to be any node except the
    // last (multiple successors means not BlockPlain).
    // Cycles are handled and merged into b's successor.
    func fuseBlockPlain(b *Block) bool {
    	if b.Kind != BlockPlain {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/management/PluginManagementInjector.java

    package org.apache.maven.model.management;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles injection of plugin management into the model.
     *
     */
    public interface PluginManagementInjector {
    
        /**
         * Merges default values from the plugin management section of the given model into itself.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsWriter.java

    import java.io.Writer;
    import java.util.Map;
    import java.util.Objects;
    
    import org.apache.maven.toolchain.model.PersistedToolchains;
    import org.apache.maven.toolchain.v4.MavenToolchainsStaxWriter;
    
    /**
     * Handles serialization of toolchains into the default textual format.
     *
     */
    @Named
    @Singleton
    public class DefaultToolchainsWriter implements ToolchainsWriter {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/admission/initializer_test.go

    )
    
    type doNothingAdmission struct{}
    
    func (doNothingAdmission) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) error {
    	return nil
    }
    func (doNothingAdmission) Handles(o admission.Operation) bool { return false }
    func (doNothingAdmission) Validate() error                    { return nil }
    
    type doNothingPluginInitialization struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/caching/MapBasedBuildCacheServiceTest.groovy

            then:
            found
            1 * delegate.get(hashCode) >> data
            1 * reader.readFrom(_) >> { InputStream input ->
                assert input.bytes == data
            }
            0 * _
        }
    
        def "handles missing entry"() {
            when:
            def found = cache.load(cacheKey, reader)
            then:
            ! found
            1 * delegate.get(hashCode) >> null
            0 * _
        }
    
        def "can write to map"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "http://testrepo"            | "http://testrepo/"
            "http://testrepo/"           | "http://testrepo/"
            "http://testrepo/index.html" | "http://testrepo/index.html"
        }
    
        def "parse handles multiple listed links"() {
            def html = """
            <a href="directory1">directory1</a>
            <a href="directory2">directory2</a>
            <a href="directory3">directory3</a>
            <a href="directory4"/>"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top