Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for key2 (0.08 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/OnlyIgnoredKeys.java

        }
    
        @Override
        public boolean isFatal() {
            return false;
        }
    
        @Override
        public void explainTo(TreeFormatter formatter) {
            formatter.append("artifact was signed but all keys were ignored");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/DefaultKeyServers.java

    public abstract class DefaultKeyServers {
        private final static List<URI> DEFAULT_KEYSERVERS = ImmutableList.of(
            uri("hkp://ha.pool.sks-keyservers.net"),
            uri("https://keyserver.ubuntu.com"),
            uri("https://keys.openpgp.org"),
            uri("https://pgp.mit.edu")
        );
    
        private static URI uri(String uri) {
            try {
                return new URI(uri);
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

            if (!declarationsBySchemaFunctions.isEmpty()) {
                collectorDeclarationsByClass[kClass] = declarationsBySchemaFunctions
            }
    
            return declarationsBySchemaFunctions.keys
        }
    
        override fun constructors(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<DataConstructor> = emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModuleTest.groovy

        }
    
        def "does not allow extra keys in module(Map)"() {
            def map = [invalidKey: "value", group: "com.example", name: "example", version: "1.0"]
            def dependencies = Mock(Dependencies)
            when:
            DependenciesExtensionModule.module(dependencies, map)
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "The map must not contain the following keys: [invalidKey]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 23:56:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

                return null;
            }
        }
    
        public static String toLongIdHexString(long key) {
            return String.format("%016X", key).trim();
        }
    
        public static String toHexString(byte[] fingerprint) {
            return Fingerprint.wrap(fingerprint).toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupRootPlugin.kt

                    parameters.taskPathToReports = globalExtension.taskPathToReports.map { taskPathToReportsInExtension ->
                        (taskPathToReportsInExtension.keys + taskPathToReports.keys).associateWith {
                            taskPathToReportsInExtension.getOrDefault(it, emptyList()) + taskPathToReports.getOrDefault(it, emptyList())
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/GeneralGradleDslSchemaTest.kt

            assertTrue(schema.analysisSchema.dataClassesByFqName.keys.any { it.simpleName == NestedReceiver::class.simpleName })
        }
    
        @Test
        fun `general dsl schema has types discovered via factory functions`() {
            val schema = schemaFrom(UtilsContainer::class)
            assertTrue(schema.analysisSchema.dataClassesByFqName.keys.any { it.simpleName == NestedReceiver::class.simpleName })
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         *
         * @param key the key
         * @param value the value
         */
        void put(K key, V value);
    
        /**
         * Adds a map entry to the property value.
         *
         * <p>The given provider will be queried when the value of this property is queried.
         * This property will have no value when the given provider has no value.
         *
         * @param key the key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/security/internal/pgp/BaseInMemoryPgpSignatoryProvider.java

                if (keyId == null) {
                    PGPSecretKey key = new JcaPGPSecretKeyRing(in).getSecretKey();
                    return factory.createSignatory(name, key, password);
                } else {
                    PgpKeyId expectedKeyId = new PgpKeyId(keyId);
                    for (PGPSecretKeyRing keyring : new JcaPGPSecretKeyRingCollection(in)) {
                        for (PGPSecretKey key : keyring) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoCoverage.groovy

        // Order matters here, as we want to test the latest version first
        // Relies on Groovy keeping the order of the keys in a map literal
        private static final Map<JavaVersion, JacocoVersion> JDK_CUTOFFS = [
            (JavaVersion.VERSION_21): JacocoVersion.SUPPORTS_JDK_21,
            (JavaVersion.VERSION_20): JacocoVersion.SUPPORTS_JDK_20,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:50:44 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top