Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 489 for Tiller (0.07 sec)

  1. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                val allSubprojectsInBucketJson = buckets.flatMap { it.subprojects.map { it.name } }.toSet()
    
                val allSubprojectsInModel = model.subprojects.getSubprojectsForFunctionalTest(testCoverage)
                    .filter { onlyNativeSubprojectsForIntelMacs(testCoverage, it.name) }
                    .map { it.name }
                val subprojectsInModelButNotInBucketJson = allSubprojectsInModel.toMutableList().apply { removeAll(allSubprojectsInBucketJson) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

        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) {
        is ValidatePlugins -> listOf(outputFile.get().asFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/go/doc/testdata/generics.0.golden

    	// Constraint is a constraint interface with two type parameters. 
    	type Constraint[P, Q interface{ string | ~int | Type[int] }] interface {
    		~int | ~byte | Type[string]
    		M() P
    	}
    
    	// NewEmbeddings demonstrates how we filter the new embedded ...
    	type NewEmbeddings interface {
    		string	// should not be filtered
    	
    		struct {
    			// contains filtered or unexported fields
    		}
    		~struct {
    			// contains filtered or unexported fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. src/go/doc/testdata/generics.2.golden

    	// Constraint is a constraint interface with two type parameters. 
    	type Constraint[P, Q interface{ string | ~int | Type[int] }] interface {
    		~int | ~byte | Type[string]
    		M() P
    	}
    
    	// NewEmbeddings demonstrates how we filter the new embedded ...
    	type NewEmbeddings interface {
    		string	// should not be filtered
    	
    		struct {
    			// contains filtered or unexported fields
    		}
    		~struct {
    			// contains filtered or unexported fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

    internal
    object ClosureCodec : Codec<Closure<*>> {
        override suspend fun WriteContext.encode(value: Closure<*>) {
            // Write the owning script for the closure
            // Discard the delegate, this will be replaced by the caller
            writeReference(findOwningScript(value))
            writeReference(value.thisObject)
            encodeBean(value.dehydrate())
        }
    
        override suspend fun ReadContext.decode(): Closure<*> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     *
     * Implementations authenticate by returning a follow-up request that includes an authorization
     * header, or they may decline the challenge by returning null. In this case the unauthenticated
     * response will be returned to the caller that triggered it.
     *
     * Implementations should check if the initial request already included an attempt to
     * authenticate. If so it is likely that further attempts will not be useful and the authenticator
     * should give up.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/dataFlowInfoProvider/AbstractExitPointSnapshotTest.kt

                } else {
                    break
                }
            }
    
            return generateSequence<PsiElement>(candidate) { it.nextSibling }
                .filterIsInstance<KtExpression>()
                .filter { it.textRange in textRange }
                .toList()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            val hasher = Hashing.newHasher()
            // This routine is used to snapshot results of File.list(), File.listFiles() and similar calls.
            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

        accessorsFor(schema.map(::accessible)).flatMap { accessor ->
            val (_, fragments) = fragmentsFor(accessor)
            fragments
                .map { it.source }
                .filter { it.isNotBlank() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

                            setTestNameIncludePatterns(scenariosFromFile)
                        }
                        doFirst {
                            assert((filter as DefaultTestFilter).includePatterns.isNotEmpty()) { "Running $name requires to add a test filter" }
                        }
                    }
                    mustRunAfter(currentlyRegisteredTestProjects)
                    testSpecificConfigurator(this)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top