Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for customjdk (0.33 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultJvmVendorSpecTest.groovy

            }
    
            expect:
            assertDoesNotMatch(JvmVendorSpec.IBM, metadata)
            assertDoesNotMatch(JvmVendorSpec.AMAZON, metadata)
            assertMatches(JvmVendorSpec.matching("customjdk"), metadata)
        }
    
        void assertMatches(JvmVendorSpec spec, actualToolchain) {
            assert ((Predicate<JavaToolchain>) spec).test(actualToolchain)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

                    customDependency.buildDependencies(":child1:jar")
                    customDependency.publication = fileReference("customJar.jar")
                    customDependency.publicationJavadocPath = fileReference("customJar-javadoc.jar")
                    customDependency.publicationSourcePath = fileReference("customJar-sources.jar")
                    entries += [customDependency]
                }
            }
            child4.dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName + "/scale",
    				},
    			},
    			expectError: true,
    		},
    		"resource does not implement scale": {
    			apiResources: []metav1.APIResource{
    				{
    					Kind: customGVK.Kind,
    					Name: resourceName,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                task customJar(type:Jar) {
                    with jar
                    archiveClassifier = 'custom'
                }
    
                publishing {
                    publications {
                        custom(MavenPublication) {
                            artifact customJar
                        }
                    }
                }
    
                signing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

         | Vendor:             Microsoft
         | Architecture:       aarch64
         | Is JDK:             true
         | Detected by:        SDKMAN!
    
     + OpenJDK 15-ea
         | Location:           /Users/user/customJdks/15.ea.21-open
         | Language Version:   15
         | Vendor:             AdoptOpenJDK
         | Architecture:       x86_64
         | Is JDK:             true
         | Detected by:        environment variable 'JDK16'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top