Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 519 for Unshare (0.27 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                file('project1/version.txt') << '3.4'
                file('project2/version.txt') << '3.3'
    
                switch (sharedScriptFileType) {
                    case SHARED_SCRIPTPLUGIN:
                        // share the same script file by applying it as a script plugin in the subproject's build file
                        subprojectNames.each { subprojectName ->
                            file("${subprojectName}/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/README.adoc

    You want to share a file made by a task in one project with a task in another project.
    For example, one task makes a file, and the other task reads the file and uses some information inside it.
    This is one way you can share information across project boundaries. (Another way is to use extension objects.)
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin/producer/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::declare-outgoing-configuration[]
    val instrumentedJars by configurations.creating {
        isCanBeConsumed = true
        isCanBeResolved = false
        // If you want this configuration to share the same dependencies, otherwise omit this line
        extendsFrom(configurations["implementation"], configurations["runtimeOnly"])
    }
    // end::declare-outgoing-configuration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
  4. src/path/filepath/path_windows.go

    			//
    			// The correct behavior for Join when the first element is an incomplete UNC
    			// path (for example, "\\") is underspecified. We currently join subsequent
    			// elements so Join("\\", "host", "share") produces "\\host\share".
    			for len(e) > 0 && os.IsPathSeparator(e[0]) {
    				e = e[1:]
    			}
    			// If the path is \ and the next path element is ??,
    			// add an extra .\ to create \.\?? rather than \??\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/packaging/common/env/fess

    FESS_VAR_PATH=${packaging.fess.var.dir}
    
    FESS_DICTIONARY_PATH=/var/lib/opensearch/config/
    
    # Port
    FESS_PORT=8080
    
    # Heap Memory
    FESS_HEAP_SIZE=512m
    
    # Elasticsearch Path
    SEARCH_ENGINE_HOME=/usr/share/opensearch/
    
    # Elasticsearch URL
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 489 bytes
    - Viewed (0)
  6. clause/locking.go

    package clause
    
    const (
    	LockingStrengthUpdate    = "UPDATE"
    	LockingStrengthShare     = "SHARE"
    	LockingOptionsSkipLocked = "SKIP LOCKED"
    	LockingOptionsNoWait     = "NOWAIT"
    )
    
    type Locking struct {
    	Strength string
    	Table    Table
    	Options  string
    }
    
    // Name where clause name
    func (locking Locking) Name() string {
    	return "FOR"
    }
    
    // Build build where clause
    func (locking Locking) Build(builder Builder) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:32:56 UTC 2023
    - 773 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    Subprojects in a multi-project build typically share some common dependencies.
    
    image::structuring-builds-3.png[]
    
    Instead of copying and pasting the same Java version and libraries in each subproject build script, Gradle provides a special directory for storing shared build logic that can be automatically applied to subprojects.
    
    [[sec:using_buildsrc]]
    == Share logic in `buildSrc`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-summary.adoc.template

    * Create a modular software project by combining multiple subprojects
    * Share build configuration logic between subprojects using convention plugins in `buildSrc`
    * Run similar named tasks in all subprojects
    * Run a task in a specific subproject
    * Build, bundle and run the application
    
    == Next steps
    
    When your project grows, you might be interested in more details how to configure JVM projects, structuring multi-project builds and dependency management:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 718 bytes
    - Viewed (0)
  9. src/mime/type_unix.go

    }
    
    // See https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-0.21.html
    // for the FreeDesktop Shared MIME-info Database specification.
    var mimeGlobs = []string{
    	"/usr/local/share/mime/globs2",
    	"/usr/share/mime/globs2",
    }
    
    // Common locations for mime.types files on unix.
    var typeFiles = []string{
    	"/etc/mime.types",
    	"/etc/apache2/mime.types",
    	"/etc/apache/mime.types",
    	"/etc/httpd/conf/mime.types",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. src/debug/dwarf/line_test.go

    	{`C:\`, `Windows`, `C:\Windows`},
    	{`C:\Windows\`, `C:System32`, `C:\Windows\System32`},
    	{`C:\Windows`, `a/b`, `C:\Windows\a/b`},
    	{`\\host\share\`, `foo`, `\\host\share\foo`},
    	{`\\host\share\`, `foo\bar`, `\\host\share\foo\bar`},
    	{`//host/share/`, `foo/bar`, `//host/share/foo/bar`},
    
    	// Note: the Go compiler currently emits DWARF line table paths
    	// with '/' instead of '\' (see issues #19784, #36495). These
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top