Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 173 for tdmap (0.05 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/SerializedOperationProgress.java

            this.time = (Long) map.get("time");
            this.details = map.get("details");
            this.detailsClassName = (String) map.get("detailsClassName");
        }
    
        @Override
        public Map<String, ?> toMap() {
            ImmutableMap.Builder<String, Object> map = ImmutableMap.builder();
    
            // Order is optimised for humans looking at the log.
    
            if (details != null) {
                map.put("details", details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                    subProjectToTestClassTime.key to (subProjectToTestClassTime.value as JSONArray).map { TestClassTime(it as JSONObject) }
                }.toMap()
            }.toMap()
    
            val result = mutableMapOf<TestCoverage, List<SmallSubprojectBucket>>()
            for (stage in model.stages) {
                for (testCoverage in stage.functionalTests) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/exbhv/GroupBhv.java

                result.setAttributes(source.entrySet().stream().filter(e -> !"name".equals(e.getKey()))
                        .map(e -> new Pair<>(e.getKey(), (String) e.getValue())).collect(Collectors.toMap(Pair::getFirst, Pair::getSecond)));
                return result;
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

    import java.util.function.Predicate;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import static java.util.function.Function.identity;
    import static java.util.stream.Collectors.toMap;
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * A task for creating digital signature files for one or more; tasks, files, publishable artifacts or configurations.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/universe.go

    	okforlen[types.TCHAN] = true
    	okforlen[types.TMAP] = true
    	okforlen[types.TSLICE] = true
    	okforlen[types.TSTRING] = true
    
    	okforeq[types.TPTR] = true
    	okforeq[types.TUNSAFEPTR] = true
    	okforeq[types.TINTER] = true
    	okforeq[types.TCHAN] = true
    	okforeq[types.TSTRING] = true
    	okforeq[types.TBOOL] = true
    	okforeq[types.TMAP] = true    // nil only; refined in typecheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/AllTests.java

            Map<String, Map<String, String>> configs = new HashMap<>();
    
            if ( System.getProperties().containsKey(TestProperties.TEST_SERVER) ) {
                configs.put("properties", toMap(System.getProperties()));
            }
    
            if ( System.getProperties().containsKey(TestProperties.TEST_CONFIG_DIR) ) {
                try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/trace/SerializedOperationStart.java

            this.startTime = (Long) map.get("startTime");
            this.details = map.get("details");
            this.detailsClassName = (String) map.get("detailsClassName");
        }
    
        @Override
        public Map<String, ?> toMap() {
            ImmutableMap.Builder<String, Object> map = ImmutableMap.builder();
    
            // Order is optimised for humans looking at the log.
    
            map.put("displayName", displayName);
    
            if (details != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

            return stores.stream()
                .flatMap(store -> store.getEstimatedExperimentDurationsInMillis().entrySet().stream())
                .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue, Math::max, LinkedHashMap::new));
        }
    
        private ResultsStore getStoreForTest(PerformanceExperiment experiment) {
            buildTests();
            if (!tests.containsKey(experiment)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top