Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 331 for associate (0.07 seconds)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt

        fun Project.from(sourceSet: SourceSet) {
            associate(tasks.named<JavaCompile>(sourceSet.getCompileTaskName("java")))
            plugins.withType<GroovyBasePlugin>() {
                associate(tasks.named<GroovyCompile>(sourceSet.getCompileTaskName("groovy")))
            }
            plugins.withId("org.jetbrains.kotlin.jvm") {
                associate(tasks.named<KotlinCompile>(sourceSet.getCompileTaskName("kotlin")))
            }
        }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Sep 19 05:45:14 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

         * @param key the metadata key
         * @param values the values to associate with the key
         */
        public void putValues(final String key, final String[] values) {
            metadata.put(key, values);
        }
    
        /**
         * Puts a single value for a given key in the metadata.
         *
         * @param key the metadata key
         * @param value the value to associate with the key
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Sep 06 04:15:37 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

        val globalExtension = rootProject.extensions.getByType<TestFilesCleanupBuildServiceRootExtension>()
        project.gradle.taskGraph.whenReady {
            val allTasks = ******@****.***ks
            val taskPathToReports = allTasks.associate { it.path to it.customReports() + it.attachedReportLocations() }.filter { it.value.isNotEmpty() }
            globalExtension.taskPathToReports = taskPathToReports
        }
    }
    
    fun Task.customReports(): List<File> = when (this) {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. docs/sts/tls.md

    In case of certificate-based authentication, MinIO has to map the client-provided certificate to an S3 policy. MinIO does this via the subject common name field of the X.509 certificate. So, MinIO will associate a certificate with a subject `CN = foobar` to a S3 policy named `foobar`.
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 6K bytes
    - Click Count (1)
  5. cmd/admin-handlers-users_test.go

    	if err != nil {
    		c.Fatalf("error listing: %v", err)
    	}
    	v, ok := usersMap[accessKey]
    	if !ok {
    		c.Fatalf("user not listed: %s", accessKey)
    	}
    	c.Assert(v.Status, madmin.AccountEnabled)
    
    	// 3. Associate policy and check that user can access
    	_, err = s.adm.AttachPolicy(ctx, madmin.PolicyAssociationReq{
    		Policies: []string{"readwrite"},
    		User:     accessKey,
    	})
    	if err != nil {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Oct 15 17:00:45 GMT 2025
    - 50.6K bytes
    - Click Count (0)
  6. compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java

        /**
         * Sets the InputLocation for a specific nested element key.
         *
         * @param key the key to set the location for
         * @param location the InputLocation to associate with the key
         */
        @Override
        public void setLocation(Object key, InputLocation location) {
            if (key instanceof String string) {
                switch (string) {
                    case "": {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/argumentproviders/CiEnvironmentProvider.kt

        }
    
        private
        fun collectMirrorUrls(): Map<String, String> =
            // expected env var format: repo1_id:repo1_url,repo2_id:repo2_url,...
            System.getenv("REPO_MIRROR_URLS")?.ifBlank { null }?.split(',')?.associate { nameToUrl ->
                val (name, url) = nameToUrl.split(':', limit = 2)
                name to url
            } ?: emptyMap()
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Aug 19 10:37:27 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

            val uuidToTestCoverage = model.stages.flatMap { it.functionalTests }.associateBy { it.uuid }
            val testCoverageAndBuckets: List<Map<String, Any>> = objectMapper.readValue(testBucketsJson.readText())
            testCoverageAndBuckets.associate { testCoverageAndBucket ->
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Sep 24 08:38:33 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/util/RenderDataUtil.java

         * For other types of values, they are registered directly.
         *
         * @param data the RenderData object to register the value in
         * @param key the key to associate with the value
         * @param value the value to register; can be null, Entity, Collection, or any other object
         */
        public static void register(final RenderData data, final String key, final Object value) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  10. impl/maven-core/src/test/java/org/apache/maven/MavenTestHelper.java

            DefaultSession session =
                    new DefaultSession(mavenSession, null, null, repositorySystem, new DefaultLookup(container), null);
            InternalSession.associate(repoSession, session);
            return repoSession;
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 2.2K bytes
    - Click Count (0)
Back to Top