Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for garlic (5.62 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"gabon":                                "\U0001f1ec\U0001f1e6",
    	"gambia":                               "\U0001f1ec\U0001f1f2",
    	"game_die":                             "\U0001f3b2",
    	"garlic":                               "\U0001f9c4",
    	"gb":                                   "\U0001f1ec\U0001f1e7",
    	"gear":                                 "\u2699\ufe0f",
    	"gem":                                  "\U0001f48e",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    			continue
    		}
    
    		mask := uint64(live.VarLoc.Registers)
    		for {
    			if mask == 0 {
    				break
    			}
    			reg := uint8(bits.TrailingZeros64(mask))
    			mask &^= 1 << reg
    
    			registers[reg] = append(registers[reg], SlotID(k))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

        def "setup"() {
            file("rootLib.jar").createNewFile()
            file("earLib.jar").createNewFile()
    
            file("settings.gradle").write("rootProject.name='root'")
        }
    
        void "creates ear archive"() {
            buildFile << """
    apply plugin: 'ear'
    
    dependencies {
        deploy files('rootLib.jar')
        earlib files('earLib.jar')
    }
    
    """
            when:
            run 'assemble'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ear/earWithWar/kotlin/build.gradle.kts

    // tag::use-ear-plugin[]
    plugins {
        ear
    }
    // end::use-ear-plugin[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        deploy(project(path = ":war", configuration = "war"))
    
        earlib(group = "log4j", name = "log4j", version = "1.2.15", ext = "jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ear/earWithWar/groovy/build.gradle

    // tag::use-ear-plugin[]
    plugins {
        id 'ear'
    }
    // end::use-ear-plugin[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        deploy project(path: ':war', configuration: 'war')
    
        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 258 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

        deploy(project(path = ":war", configuration = "war"))
    
        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib(group = "log4j", name = "log4j", version = "1.2.15", ext = "jar")
    }
    
    tasks.ear {
        appDirectory = file("src/main/app")  // use application metadata found in this folder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

        // will be placed in the ear root
        deploy project(path: ':war', configuration: 'war')
    
        // The following dependencies will become ear libs and will
        // be placed in a dir configured via the libDirName property
        earlib group: 'log4j', name: 'log4j', version: '1.2.15', ext: 'jar'
    }
    
    tasks.named('ear') {
        appDirectory = file('src/main/app')  // use application metadata found in this folder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

            """apply plugin: 'ear'
               apply plugin: 'java'
               apply plugin: 'eclipse'
               repositories { $localMaven }
               dependencies { earlib 'org.example:example-api:1.0' }
               eclipse.classpath.plusConfigurations << configurations.earlib
               ear { libDirName = '/custom/lib/dir' }
            """
    
            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top