Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,261 for multis (0.12 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

        private static final byte[] INSTRUMENTED_CLASS = new byte[]{2}
        private static final byte[] INSTRUMENTED_VERSIONED_CLASS = new byte[]{20}
    
        def "replaces original class with transformed in non-multi-release JAR"() {
            given:
            def original = jar(testDir.file("original.jar")) {
                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                    // If the original JAR is not multi-release, we don't need the manifest in the transformed JAR at all.
                    return;
                }
                isMultiReleaseJar = true;
    
                // We want the transformed JAR to also be a proper multi-release JAR.
                // To do so it must have the "Multi-Release: true" attribute.
                // "Manifest-Version" attribute is also required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-multi-data-type-with-subtype.pbtxt

    Parsa Bagheri <******@****.***> 1654625502 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 18:11:42 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    This sample shows how build logic in a multi-project build can be organized into reusable plugins.
    
    == Use case
    
    As an example, let's say a project with three subprojects produces two public Java libraries that use the third subproject as an internal shared library.
    This is the project structure:
    
    ====
    [.multi-language-sample]
    =====
    .Project structure
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

            hasProject(gradleProjects, rootSingle, ':', 'A')
    
            where:
            modelType << buildScopedModels
        }
    
        def "ProjectConnection provides all GradleProjects for root of multi-project build"() {
            when:
            def gradleProjects = getGradleProjectsWithProjectConnectionUsingBuildModel(rootMulti, modelType)
    
            then:
            gradleProjects.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/crash.go

    	panic("important multi-line\nstringer message")
    }
    
    func StringerPanic() {
    	panic(exampleStringer{})
    }
    
    type examplePanicStringer struct{}
    
    func (s examplePanicStringer) String() string {
    	panic(exampleStringer{})
    }
    
    func DoubleStringerPanic() {
    	panic(examplePanicStringer{})
    }
    
    func StringPanic() {
    	panic("important multi-line\nstring message")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/structuring_software_products_details.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[tweaking_structure]]
    = Multi-project Build Considerations and Optimizations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 824 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/util/internal/JarUtil.java

        // We cannot use Attributes.Name.MULTI_RELEASE as it is only available since Java 9;
        public static final String MULTI_RELEASE_ATTRIBUTE = "Multi-Release";
        // Pattern for JAR entries in the versioned directories.
        // See https://docs.oracle.com/en/java/javase/20/docs/specs/jar/jar.html#multi-release-jar-files
        private static final Pattern VERSIONED_JAR_ENTRY_PATH = Pattern.compile("^META-INF/versions/(\\d+)/.+$");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    This sample uses this feature to configure an additional repository to be used only for specific environments.
    
    [source.multi-language-sample,kotlin]
    ----
    > gradle --init-script init.gradle.kts -q showRepos
    include::{snippetsPath}/initScripts/configurationInjection/tests-common/initScriptConfiguration.out[]
    ----
    [source.multi-language-sample,groovy]
    ----
    > gradle --init-script init.gradle -q showRepos
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top