Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 635 for earlib (0.33 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.ide.eclipse.model.EclipseWtpComponent.xml

                </tr>
                <tr>
                    <td>libConfigurations</td>
                    <td><literal>[project.configurations.runtimeClasspath]</literal></td>
                    <td><literal>[project.configurations.earlib]</literal></td>
                </tr>
                <tr>
                    <td>minusConfigurations</td>
                    <td><literal>[project.configurations.providedRuntime]</literal></td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    
    [[sec:ear_dependency_management]]
    == Dependency management
    
    The Ear plugin adds two dependency configurations: `deploy` and `earlib`. All dependencies in the `deploy` configuration are placed in the root of the EAR archive, and are _not_ transitive. All dependencies in the `earlib` configuration are placed in the 'lib' directory in the EAR archive and _are_ transitive.
    
    [[sec:ear_convention_properties]]
    == Convention properties (ear)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpIntegrationTest.groovy

                    mavenCentral()
                }
    
                dependencies {
                    implementation("org.example:GradleEclipseWTPWithIncludedBuild_Included:1.0-SNAPSHOT")
                    earlib("org.example:GradleEclipseWTPWithIncludedBuild_Included:1.0-SNAPSHOT")
                }
    
                tasks.test {
                    useJUnitPlatform()
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipseWtpPlugin.java

                    rootConfigurations.add(project.getConfigurations().getByName("deploy"));
                    libConfigurations.clear();
                    libConfigurations.add(project.getConfigurations().getByName("earlib"));
                    component.setClassesDeployPath("/");
                    final ConventionMapping convention = ((IConventionAware) component).getConventionMapping();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

            assert wtp.sourceDirs == expectedSourceDirs
            assert wtp.rootConfigurations == [project.configurations.deploy] as Set
            assert wtp.libConfigurations == [project.configurations.earlib] as Set
            assert wtp.minusConfigurations == [] as Set
            assert wtp.deployName == project.name
            assert wtp.contextPath == null
            assert wtp.resources == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/filter.go

    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    		// First, lookup directly by key. This is cheap
    		// an empty set will match none
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/fe.tld

        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String label(java.lang.String)</function-signature>
        <example>
          ${fe:label("value")}
        </example>
      </function>
    
      <function>
        <description>
          Returns Date from a given value.
        </description>
        <name>date</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 28 07:49:35 UTC 2020
    - 10K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/validtype.go

    import "cmd/compile/internal/syntax"
    
    // validType verifies that the given type does not "expand" indefinitely
    // producing a cycle in the type graph.
    // (Cycles involving alias types, as in "type A = [10]A" are detected
    // earlier, via the objDecl cycle detection mechanism.)
    func (check *Checker) validType(typ *Named) {
    	check.validType0(nopos, typ, nil, nil)
    }
    
    // validType0 checks if the given type is valid. If typ is a type parameter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/go/types/validtype.go

    package types
    
    import "go/token"
    
    // validType verifies that the given type does not "expand" indefinitely
    // producing a cycle in the type graph.
    // (Cycles involving alias types, as in "type A = [10]A" are detected
    // earlier, via the objDecl cycle detection mechanism.)
    func (check *Checker) validType(typ *Named) {
    	check.validType0(nopos, typ, nil, nil)
    }
    
    // validType0 checks if the given type is valid. If typ is a type parameter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/java/DefaultJavaToolChain.java

    /**
     * Provides backwards compatibility with Maven 3.2.3 and earlier. Clients that do not require compatibility with Maven
     * 3.2.3 and earlier are encouraged to use {@link JavaToolchainImpl}.
     * <strong>Note:</strong> This is an internal component whose interface can change without prior notice.
     *
     * @deprecated clients that do not require compatibility with Maven 3.2.3 and earlier should link to
     *             {@link JavaToolchainImpl} instead.
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Feb 07 19:46:28 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top