Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 380 for addsym (0.08 sec)

  1. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/build.gradle.kts

    }
    
    dependencies {
        providedCompile("javax.servlet:servlet-api:2.5")
    }
    
    tasks.war {
        webAppDirectory = file("src/main/webapp")
        from("src/rootContent") // adds a file-set to the root of the archive
        webInf { from("src/additionalWebInf") } // adds a file-set to the WEB-INF dir.
        webXml = file("src/someWeb.xml") // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 543 bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_386.go

    	SYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, \
    	SYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }
    	SYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, \
    	SYS_JAIL                     = 338 // { int jail(struct jail *jail); }
    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testLib").build()
    
        def "adds generate task"() {
            given:
            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
    
            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SCHED_RR_GET_INTERVAL    = 334 // { int sched_rr_get_interval (pid_t pid, \
    	SYS_UTRACE                   = 335 // { int utrace(const void *addr, size_t len); }
    	SYS_KLDSYM                   = 337 // { int kldsym(int fileid, int cmd, \
    	SYS_JAIL                     = 338 // { int jail(struct jail *jail); }
    	SYS_SIGPROCMASK              = 340 // { int sigprocmask(int how, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[ear_plugin]]
    = The Ear Plugin
    
    The Ear plugin adds support for assembling web application EAR files.
    It adds a default EAR archive task.
    It doesn't require the <<java_plugin.adoc#java_plugin,Java plugin>>, but for projects that also use the Java plugin it disables the default JAR archive generation.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    ====
    
    [[sec:war_project_layout]]
    == Project layout
    
    In addition to the <<java_plugin.adoc#sec:java_project_layout,standard Java project layout>>, the War Plugin adds:
    
    `src/main/webapp`::
    Web application sources
    
    [[sec:war_tasks]]
    == Tasks
    
    The War plugin adds and modifies the following tasks:
    
    `war` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War]::
    _Depends on_: `compile`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/composite/internal/BuildController.java

    public interface BuildController extends Stoppable {
        /**
         * Adds tasks and nodes to the work graph of this build.
         */
        void populateWorkGraph(Consumer<? super BuildLifecycleController.WorkGraphBuilder> action);
    
        /**
         * Adds a filter to the work graph of this build.
         */
        void addFilter(Spec<Task> filter);
    
        /**
         * Adds a finalization step to the work graph of this build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilderTest.groovy

            then:
            1 * configuration.runDependencyActions()
    
            metaData.dependencies.size() == 0
            metaData.files.size() == 0
            metaData.excludes.size() == 0
        }
    
        def "adds ModuleDependency instances from configuration"() {
            def dependencyDescriptor1 = Mock(LocalOriginDependencyMetadata)
            def dependencyDescriptor2 = Mock(LocalOriginDependencyMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/kubelet/config/config.go

    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    		if len(adds.Pods) > 0 {
    			s.updates <- *adds
    		}
    		if len(updates.Pods) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

    import java.util.List;
    
    public interface ResourceAwareResolveResult {
        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top