Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 467 for multi2 (0.09 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        -webkit-filter: grayscale(1);
        opacity: 0.7;
    }
    
    .multi-language-selector .language-option.selected {
        background-color: #f7f7f8;
        color: #02303a;
        filter: none;
        -webkit-filter: none;
        opacity: 1;
    }
    
    .multi-language-text.hidden,
    .multi-language-selector ~ .multi-language-sample.hidden {
        display: none;
    }
    
    .multi-language-sample {
        border-radius: 0 0 4px 4px;
    }
    
    .dark-mode {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    ${testFrameworkChoice.raw}
    Project name (default: demo):
    ${packageNameChoice.raw}
    
    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    The `init` task generates the new project with the following structure:
    
    [source.multi-language-sample,kotlin]
    ----
    ├── gradle // <1>
    │   ├── libs.versions.toml // <2>
    │   └── wrapper
    │       ├── gradle-wrapper.jar
    │       └── gradle-wrapper.properties
    ├── gradlew // <3>
    ├── gradlew.bat // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    Gradle supports this scenario through _multi-project_ builds.
    This is sometimes referred to as a multi-module project.
    Gradle refers to modules as subprojects.
    
    A multi-project build consists of one root project and one or more subprojects.
    
    [[sec:project_structure]]
    == Multi-Project structure
    
    The following represents the structure of a multi-project build that contains two subprojects:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-ldap.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (2)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    // limitations under the License.
    
    [[partr3_multi_project_builds]]
    = Part 3: Multi-Project Builds
    
    Learn the basics of structuring Gradle projects using subprojects and composite builds.
    
    ****
    **In this section, you will:**
    
    - Understand Multi-Project builds
    - Understand Composite Builds
    - Add a subproject to your Build
    - Add a build to your Build
    ****
    
    [[part3_begin]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. docs/site-replication/run-multi-site-minio-idp.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/net/http/pattern.go

    	// pattern ends in a multi. In that case, that multi is more general
    	// than the remainder of the longer pattern, so combine those two relationships.
    	if len(segs1) < len(segs2) && p1.lastSegment().multi {
    		return combineRelationships(rel, moreGeneral)
    	}
    	if len(segs2) < len(segs1) && p2.lastSegment().multi {
    		return combineRelationships(rel, moreSpecific)
    	}
    	return disjoint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    For example:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    defaultTasks("some-task")      // Delegates to Project.defaultTasks()
    reportsDir = file("reports")   // Delegates to Project.file() and the Java Plugin
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/transforms/ClasspathElementTransformTest.groovy

            }
        }
    
        def "instrumentation for #factory produces multi-release jar from multi-release original"() {
            given:
            def testFile = jar(testDir.file("thing.jar")) {
                manifest {
                    mainAttributes.putValue("Multi-Release", "true")
                }
    
                entry("Foo.class", classOne())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top