- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 659 for chad (0.03 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
*/ protected static String toPlainPattern(final String pattern) { final StringBuilder buf = new StringBuilder(pattern.length()); for (int i = 0; i < pattern.length(); ++i) { final char ch = pattern.charAt(i); if (Character.isLetterOrDigit(ch) || Character.isWhitespace(ch)) { buf.append(ch); } } if (buf.indexOf("yy") == -1) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* @param out * ライター * @return コピーした文字数 */ protected static int copyInternal(final Reader in, final Writer out) { try { final char[] buf = new char[DEFAULT_BUF_SIZE]; int len; int amount = 0; while ((len = in.read(buf)) != -1) { out.write(buf, 0, len); amount += len; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 52.4K bytes - Viewed (0) -
istioctl/pkg/analyze/analyze.go
if listAnalyzers { fmt.Print(AnalyzersAsString(analyzers.All())) return nil } readers, err := gatherFiles(cmd, args) if err != nil { return err } cancel := make(chan struct{}) // We use the "namespace" arg that's provided as part of root istioctl as a flag for specifying what namespace to use // for file resources that don't have one specified. selectedNamespace = ctx.Namespace()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 06:53:50 UTC 2024 - 17.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
* 引数 * @return フォーマットされたメッセージ文字列 */ public static LogMessage format(final String messageCode, final Object... args) { assertArgumentNotEmpty("messageCode", messageCode); final char messageType = messageCode.charAt(0); final String message = MessageFormatter.getSimpleMessage(messageCode, args); switch (messageType) { case 'D':
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String SLACK_WEBHOOK_URLS_PROPERTY = "slack.webhook.urls"; public static final String GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY = "google.chat.webhook.urls"; public static final String USE_BROWSER_LOCALE_FOR_SEARCH_PROPERTY = "search.use.browser.locale"; public static final String SUGGEST_SEARCH_LOG_PROPERTY = "suggest.searchlog";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
misc/go_android_exec/main.go
if err := adb("push", os.Args[1], deviceBin); err != nil { return 0, err } // Forward SIGQUIT from the go command to show backtraces from // the binary instead of from this wrapper. quit := make(chan os.Signal, 1) signal.Notify(quit, syscall.SIGQUIT) go func() { for range quit { // We don't have the PID of the running process; use the // binary name instead. adb("exec-out", "killall -QUIT "+binName)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 21 17:46:57 UTC 2023 - 15.3K bytes - Viewed (0) -
istioctl/pkg/tag/tag.go
return err } k, err := kube.NewClient(kube.NewClientConfigForRestConfig(config), "") if err != nil { return err } sa.AddRunningKubeSourceWithRevision(k, revision, false) res, err := sa.Analyze(make(chan struct{})) if err != nil { return err } relevantMessages := diag.Messages{} for _, msg := range res.Messages.FilterOutLowerThan(diag.Error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
* .collect( * flatteningToImmutableListMultimap( * str -> str.charAt(0), * str -> str.substring(1).chars().mapToObj(c -> (char) c)); * * // is equivalent to * * static final ImmutableListMultimap<Character, Character> FIRST_LETTER_MULTIMAP = * ImmutableListMultimap.<Character, Character>builder()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 16 20:20:32 UTC 2024 - 19K bytes - Viewed (0) -
android/guava/src/com/google/common/math/PairedStatsAccumulator.java
} } else { sumOfProductsOfDeltas = NaN; } yStats.add(y); } /** * Adds the given statistics to the dataset, as if the individual values used to compute the * statistics had been added directly. */ public void addAll(PairedStats values) { if (values.count() == 0) { return; } xStats.addAll(values.xStats()); if (yStats.count() == 0) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 10.3K bytes - Viewed (0) -
src/archive/tar/reader.go
} if b := gnu.changeTime(); b[0] != 0 { hdr.ChangeTime = time.Unix(p2.parseNumeric(b), 0) } // Prior to Go1.8, the Writer had a bug where it would output // an invalid tar file in certain rare situations because the logic // incorrectly believed that the old GNU format had a prefix field. // This is wrong and leads to an output file that mangles the // atime and ctime fields, which are often left unused. //
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0)