- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 249 for misc (0.04 sec)
-
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
import static org.codelibs.core.collection.CollectionsUtil.putIfAbsent; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.concurrent.ConcurrentMap; import org.codelibs.core.beans.BeanDesc; import org.codelibs.core.beans.impl.BeanDescImpl; import org.codelibs.core.misc.DisposableUtil; /** * {@link BeanDesc}を生成するクラスです。 * <p> * 指定されたJavaBeansのメタデータを扱う{@link BeanDesc}を返します。
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.sql; import static org.codelibs.core.log.Logger.format; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import org.codelibs.core.exception.SQLRuntimeException;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.2K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch
/* POSIX 2008 makes locale_t official. */ typedef __locale_t locale_t; +#endif /* bits/types/__locale_t.h */ + #endif /* xlocale.h */ diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h index d1cb3dd..30482a1 100644 --- a/misc/sys/cdefs.h +++ b/misc/sys/cdefs.h @@ -423,4 +423,14 @@ # endif #endif +/* Undefine (also defined in libc-symbols.h). */ +#undef __attribute_copy__ +#if __GNUC_PREREQ (9, 0)
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Sep 18 14:52:45 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/DriverManagerUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.sql; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.sql.Driver; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Enumeration;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
import static org.codelibs.core.lang.StringUtil.isEmpty; import java.text.MessageFormat; import java.util.ResourceBundle; import org.codelibs.core.io.ResourceBundleUtil; import org.codelibs.core.misc.DisposableUtil; import org.codelibs.core.misc.LocaleUtil; /** * メッセージコードと引数からメッセージを組み立てるクラスです。 * * @author higa */ public abstract class MessageFormatter { /** メッセージコードの数値部の長さ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
* governing permissions and limitations under the License. */ package org.codelibs.core.text; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; /** * トークンを認識するクラスです。 * * @author higa * */ public class Tokenizer { /** * EOFをあらわします。 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.naming; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.util.Hashtable; import javax.naming.InitialContext; import javax.naming.NamingException;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/LocaleUtilTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.misc; import java.util.Locale; import junit.framework.TestCase; /** * @author higa * */ public class LocaleUtilTest extends TestCase { /** * @throws Exception */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.1K bytes - Viewed (0) -
doc/next/7-ports.md
### Linux {#linux} As [announced](go1.23#linux) in the Go 1.23 release notes, Go 1.24 requires Linux kernel version 3.2 or later. ### WebAssembly {#wasm}
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 19:37:35 UTC 2024 - 258 bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.io; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.5K bytes - Viewed (0)