Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for langs3 (0.1 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

    import org.apache.commons.lang3.ArrayUtils;
    import org.apache.commons.lang3.StringUtils;
    import org.apache.commons.text.StringEscapeUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.CoreLibConstants;
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                String[] langs = (String[]) propMap.get(QUERY_DEFAULT_LANGUAGES);
                if (langs == null) {
                    langs = split(getQueryDefaultLanguages(), ",").get(stream -> stream.map(String::trim).toArray(n -> new String[n]));
                    propMap.put(QUERY_DEFAULT_LANGUAGES, langs);
    
                }
                return normalizeQueryLanguages(langs);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        _compileFreeDebug 'org.apache.commons:commons-lang3:3.5'
                    }
                    task checkDebug(dependsOn: configurations._compileFreeDebug) {
                        def files = configurations._compileFreeDebug
                        doLast {
                           assert files.collect { it.name }.sort { it } == ['b-transitive.jar', 'c-foo.jar', 'commons-lang3-3.5.jar']
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

                <pgp value="697538D9F48FABC72DD60C1F2C82DBE6C780E2AF"/>
             </artifact>
          </component>
          <component group="org.apache.commons" name="commons-lang3" version="3.9">
             <artifact name="commons-lang3-3.9.jar">
                <pgp value="B6E73D84EA4FCC47166087253FAAD2CD5ECBB314"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	}
    	return
    }
    
    func formatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error) {
    	var _p0 *uint16
    	if len(buf) > 0 {
    		_p0 = &buf[0]
    	}
    	r0, _, e1 := Syscall9(procFormatMessageW.Addr(), 7, uintptr(flags), uintptr(msgsrc), uintptr(msgid), uintptr(langid), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(args)), 0, 0)
    	n = uint32(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        to.attribute(counted, true).attribute(artifactType, "jar")
                    }
                }
    
                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.10'
                }
            """
            file("src/main/java").createDir()
            file("src/main/java/Foo.java").createFile().text = """class Foo {}"""
            enableStableConfigurationCache()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    		{"4503599627370495p-1074", smallestNormalFloat64 - math.SmallestNonzeroFloat64, Exact},
    
    		// https://www.exploringbinary.com/php-hangs-on-numeric-value-2-2250738585072011e-308/
    		{"2.2250738585072011e-308", 2.225073858507201e-308, Below},
    		// https://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
    		{"2.2250738585072012e-308", 2.2250738585072014e-308, Above},
    	} {
    		for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. src/net/netip/netip_test.go

    // discussions, inlining IPv4 addresses, but having an "overflow"
    // interface for IPv6 or IPv6 + zone. This is here for benchmarking.
    type ip4i struct {
    	ip4    [4]byte
    	flags1 byte
    	flags2 byte
    	flags3 byte
    	flags4 byte
    	ipv6   any
    }
    
    func newip4i_v4(a, b, c, d byte) ip4i {
    	return ip4i{ip4: [4]byte{a, b, c, d}}
    }
    
    // BenchmarkIPv4_inline benchmarks the candidate representation, ip4i.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top