Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for tdmap (0.17 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	// FIXME: this seems clunky, maybe there is a better way to do this.
    
    	if ts, ok := d.rtmap[symIdx]; ok {
    		if def, ok := d.tdmap[ts]; ok {
    			return def
    		}
    		d.linkctxt.Errorf(ts, "internal error: no entry for sym %d in tdmap\n", ts)
    		return 0
    	}
    	d.linkctxt.Errorf(symIdx, "internal error: no entry for sym %d in rtmap\n", symIdx)
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. internal/logger/logonce.go

    // Holds a map of recently logged errors.
    type logOnceType struct {
    	IDMap map[string]onceErr
    	sync.Mutex
    }
    
    func (l *logOnceType) logOnceConsoleIf(ctx context.Context, subsystem string, err error, id string, errKind ...interface{}) {
    	if err == nil {
    		return
    	}
    
    	nerr := unwrapErrs(err)
    	l.Lock()
    	shouldLog := true
    	prev, ok := l.IDMap[id]
    	if !ok {
    		l.IDMap[id] = onceErr{
    			Err:   nerr,
    			Count: 1,
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRuleSetup.java

        }
    
        private static Map<AccessorKey, ReplacedAccessor> mapOldAccessorsOfUpgradedProperties(List<UpgradedProperty> upgradedProperties) {
            return upgradedProperties.stream()
                .flatMap(UpgradePropertiesRuleSetup::mapOldAccessorsOfUpgradedProperty)
                .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileActivationContext.java

            return map != null ? Collections.unmodifiableMap(map) : Collections.emptyMap();
        }
    
        private static Map<String, String> toMap(Properties properties) {
            if (properties != null && !properties.isEmpty()) {
                return properties.entrySet().stream()
                        .collect(Collectors.toMap(e -> String.valueOf(e.getKey()), e -> String.valueOf(e.getValue())));
    
            } else {
                return null;
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AbstractResolutionFailureDescriber.java

                .collect(Collectors.toMap(AssessedAttribute::getAttribute, AssessedAttribute::getProvided, (a, b) -> a));
            @SuppressWarnings("DataFlowIssue") Map<Attribute<?>, ?> incompatibleAttrs = assessedCandidate.getIncompatibleAttributes().stream()
                .collect(Collectors.toMap(AssessedAttribute::getAttribute, AssessedAttribute::getProvided, (a, b) -> a));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceTestRuntimesGenerator.java

    import java.nio.file.StandardOpenOption;
    import java.util.Arrays;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import static java.util.stream.Collectors.toMap;
    
    public class PerformanceTestRuntimesGenerator {
    
        public static void main(String[] args) throws IOException {
            new PerformanceTestRuntimesGenerator().generate(new File(args[0]));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/DefaultLifecycleMapping.java

    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import static java.util.function.Function.identity;
    import static java.util.stream.Collectors.toMap;
    
    /**
     * DefaultLifecycleMapping
     */
    public class DefaultLifecycleMapping implements LifecycleMapping {
    
        private List<Lifecycle> lifecycles;
    
        private Map<String, Lifecycle> lifecycleMap;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:46:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuilder.java

                                        return request.getSystemProperties().entrySet().stream()
                                                .collect(Collectors.toMap(
                                                        e -> e.getKey().toString(),
                                                        e -> e.getValue().toString()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. 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)
  10. operator/pkg/compare/compare.go

    	if err != nil {
    		return "", err
    	}
    	bo, err := object.ParseK8sObjectsFromYAMLManifest(b)
    	if err != nil {
    		return "", err
    	}
    
    	aom, bom := ao.ToMap(), bo.ToMap()
    	return manifestDiff(aom, bom, nil, verbose)
    }
    
    // ManifestDiffWithSelect checks the manifest differences with selected and ignored resources.
    // The selected filter will apply before the ignored filter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top