Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for tdmap (0.07 sec)

  1. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            to: List<Pair<File, HashCode>>
        ): InvalidationReason? = to.toMap().let { toMap ->
            checkFingerprintGiven(
                mock {
                    on { allInitScripts } doReturn toMap.keys.toList()
                    on { hashCodeAndTypeOf(any()) }.then { invocation ->
                        toMap[invocation.getArgument(0)] to FileType.RegularFile
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

                val allSubstitutors = buildList {
                    combinations.forEach { typesPermutation ->
                        add(buildSubstitutor { substitutions(typeParameters.zip(typesPermutation).toMap()) })
                    }
                }
    
                allSubstitutors.forEach { substitutor ->
                    testContractsOnDeclarationSymbol(symbol, substitutor, testServices)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

            .toList()
    
    
    private
    fun applyConventionMappingTo(taskType: Class<*>, relevantFields: List<RelevantField>): List<RelevantField> =
        conventionAwareFieldsOf(taskType).toMap().let { flags ->
            relevantFields.map { relevantField ->
                relevantField.run {
                    flags[field]?.let { flagField ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                                            || b.getOriginalKey().getQualifier() == null
                                            || b.getOriginalKey().getQualifier() instanceof String)
                                    .collect(Collectors.toMap(
                                            b -> (String)
                                                    (b.getOriginalKey() != null
                                                            ? b.getOriginalKey().getQualifier()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

                        "but type '${this.renderForDebugging()}' has ${argumentTypes.size} type arguments."
            }
    
            val substitutor = substitutorByMap(typeParameterSymbols.zip(argumentTypes).toMap(), session)
            return superTypes.asSequence().map {
                val type = substitutor.substituteOrSelf(it)
                if (shouldApproximate) {
                    session.typeApproximator.approximateToSuperType(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                                    || b.getOriginalKey().getQualifier() == null
                                    || b.getOriginalKey().getQualifier() instanceof String)
                            .collect(Collectors.toMap(
                                    b -> (String)
                                            (b.getOriginalKey() != null
                                                    ? b.getOriginalKey().getQualifier()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                    Lookup lookup) {
                super(session, repositorySystem, repositories, resolverRepositories, lookup);
                systemProperties = System.getenv().entrySet().stream()
                        .collect(Collectors.toMap(e -> "env." + e.getKey(), e -> e.getValue()));
                System.getProperties().forEach((k, v) -> systemProperties.put(k.toString(), v.toString()));
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. cmd/batch-expire.go

    		var tagMap map[string]string
    		if len(obj.UserTags) != 0 {
    			t, err := tags.ParseObjectTags(obj.UserTags)
    			if err != nil {
    				return false
    			}
    			tagMap = t.ToMap()
    		}
    
    		for _, kv := range ef.Tags {
    			// Object (version) must match all tags specified in
    			// the filter
    			var match bool
    			for t, v := range tagMap {
    				if kv.Match(BatchJobKV{Key: t, Value: v}) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		if strings.Join(enc, ",") != oi1.ContentEncoding {
    			return replicateMetadata
    		}
    	}
    
    	t, _ := tags.ParseObjectTags(oi1.UserTags)
    	if (oi2.UserTagCount > 0 && !reflect.DeepEqual(oi2.UserTags, t.ToMap())) || (oi2.UserTagCount != len(t.ToMap())) {
    		return replicateMetadata
    	}
    
    	// Compare only necessary headers
    	compareKeys := []string{
    		"Expires",
    		"Cache-Control",
    		"Content-Language",
    		"Content-Disposition",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. cmd/batch-handlers.go

    			tagMap := map[string]string{}
    			tagStr := oi.UserTags
    			if len(tagStr) != 0 {
    				t, err := tags.ParseObjectTags(tagStr)
    				if err != nil {
    					return false
    				}
    				tagMap = t.ToMap()
    			}
    			for _, kv := range r.Flags.Filter.Tags {
    				for t, v := range tagMap {
    					if kv.Match(BatchJobKV{Key: t, Value: v}) {
    						return true
    					}
    				}
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
Back to top