Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for key2 (0.03 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setString(14, results.getHost());
                statement.setString(15, results.getTeamCityBuildId());
                statement.execute();
                ResultSet keys = statement.getGeneratedKeys();
                keys.next();
                return keys.getLong(1);
            }
        }
    
        private void insertExecutionExperiment(Connection connection, R results) throws SQLException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

            return self.module(group, name, version);
        }
    
        @Nullable
        private static String extract(Map<String, CharSequence> map, String key) {
            return map.containsKey(key) ? map.get(key).toString() : null;
        }
    
        /**
         * Modifies a dependency.
         *
         * @param dependencyNotation dependency to modify
         * @return the modified dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/MapExtensions.kt

    fun <V> Map<String, V>.filterKeysByPrefix(prefix: String): Map<String, V?> =
        filterKeys { key -> key.length > prefix.length && key.startsWith(prefix) }
    
    
    /**
     * Inverts the given map by swapping its keys with their corresponding values and returns the resulting map.
     *
     * If the original map contains duplicate values, the resulting map will map each value to the key associated
     * with the last occurrence of that value in the original map's iteration order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            for (K item : keys) {
                destination.put(item, keyGenerator.transform(item));
            }
        }
    
        /**
         * Given a set of keys, derive a set of values and return a map
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

            if (number == 0) {
                return;
            }
    
            // See the distributions' respective `compiler.java` files to see the keys used for localization.
            // We are using the following keys:
            //  - count.error and count.error.plural
            //  - count.warn and count.warn.plural
            StringBuilder keyBuilder = new StringBuilder("count.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    |Configurable directory location, whose value is mutable
    
    |`ListProperty<T>`
    |List of elements of type `T`
    
    |`SetProperty<T>`
    |Set of elements of type `T`
    
    |`MapProperty<K, V>`
    |Map of `K` type keys with `V` type values
    
    |`ConfigurableFileCollection`
    |A mutable `FileCollection` which represents a collection of file system locations
    
    |`ConfigurableFileTree`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    class ThreadLocal {
     public:
      ThreadLocal() : key_(CreateKey()),
                      default_() {}
      explicit ThreadLocal(const T& value) : key_(CreateKey()),
                                             default_(value) {}
    
      ~ThreadLocal() {
        // Destroys the managed object for the current thread, if any.
        DeleteThreadLocalValue(pthread_getspecific(key_));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top