Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for denormalize (0.31 sec)

  1. src/main/java/org/codelibs/core/convert/ByteConversionUtil.java

            }
        }
    
        private static Byte toByte(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return Byte.valueOf(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * {@literal byte}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal byte}
         */
        public static byte toPrimitiveByte(final Object o) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java

            }
        }
    
        private static Double toDouble(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return new Double(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * {@literal double}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal double}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java

            }
        }
    
        private static Integer toInteger(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return Integer.valueOf(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * {@literal int}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal int}
         */
        public static int toPrimitiveInt(final Object o) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

            ImmutableList<String> components = ImmutableList.copyOf(aliases.stream()
                .map(AliasNormalizer::normalize)
                .map(this::intern)
                .collect(Collectors.toList()));
            BundleModel previous = bundles.put(AliasNormalizer.normalize(intern(alias)), new BundleModel(components, currentContext));
            if (previous != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/os/63703.md

    On Windows, [Readlink] no longer tries to normalize volumes
    to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 280 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/LongConversionUtil.java

            }
        }
    
        private static Long toLong(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return Long.valueOf(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * 変換された{@literal long}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal long}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/ctrlz/ctrlz.go

    	allTopics = append(allTopics, customTopics...)
    	topicMutex.Unlock()
    
    	exec, _ := os.Executable()
    	instance := exec + " - " + getLocalIP()
    
    	funcs := template.FuncMap{
    		"getTopics": getTopics,
    		"normalize": normalize,
    	}
    
    	baseLayout := assets.ParseTemplate(template.New("base"), "templates/layouts/base.html")
    	baseLayout = baseLayout.Funcs(funcs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ConfigurationCacheOutputNormalizer.groovy

    import org.gradle.exemplar.executor.ExecutionMetadata
    import org.gradle.exemplar.test.normalizer.OutputNormalizer
    
    class ConfigurationCacheOutputNormalizer implements OutputNormalizer {
        @Override
        String normalize(String output, ExecutionMetadata executionMetadata) {
            return output.replaceAll(
                "configuration-cache/.*/configuration-cache-report",
                "configuration-cache/<hash>/configuration-cache-report"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/main/main
    """
    
            when:
            String normalized = outputNormalizer.normalize(input, executionMetadata)
    
            then:
            normalized == expected
        }
    
        def "successfully normalizes windows output"() {
            given:
            String input = """
    > Task :components
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/ShortConversionUtil.java

            }
        }
    
        private static Short toShort(final String s) {
            if (StringUtil.isEmpty(s)) {
                return null;
            }
            return Short.valueOf(DecimalFormatUtil.normalize(s));
        }
    
        /**
         * {@literal short}に変換します。
         *
         * @param o
         *            変換元のオブジェクト
         * @return 変換された{@literal short}
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top