- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 900 for format$1 (0.05 sec)
-
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.zip; 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.io.File; import java.io.IOException;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt
* limitations under the License. */ package okhttp3.internal.http2.hpackjson import okhttp3.internal.http2.Header import okio.ByteString /** * Representation of an individual case (set of headers and wire format). There are many cases for a * single story. This class is used reflectively with Moshi to parse stories. */ data class Case( val seqno: Int = 0, val wire: ByteString? = null,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 23 10:26:25 UTC 2023 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
for (int packetType : packetTypes) { assertTrue(packetType >= 0x00 && packetType <= 0x16, String.format("Packet type 0x%02X should be in valid range 0x00-0x16", packetType)); } } @Test @DisplayName("Fragment flags should be within byte range")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
ci/official/containers/ml_build/builder.packages.txt
patch rpm2cpio unar wget xz-utils cpio # Other build-related tools apt-transport-https autoconf automake build-essential ca-certificates llvm-18 clang-18 clang-tidy-18 lld-18 clang-format-12 curl git parallel sudo swig unzip zip openjdk-21-jdk vim
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Mar 11 00:08:59 UTC 2025 - 363 bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.packages.txt
libcurl3-dev libcurl4-openssl-dev libfreetype6-dev libhdf5-serial-dev libomp-18-dev libssl-dev libtool libssl-dev libxml2-dev libxslt1-dev libzmq3-dev llvm-18 clang-18 clang-tidy-18 lld-18 clang-format-12 curl git parallel sudo swig unzip zip openjdk-21-jdk
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 512 bytes - Viewed (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
LinearTransformation result = inverse; return (result == null) ? inverse = createInverse() : result; } @Override public String toString() { return String.format("y = %g * x + %g", slope, yIntercept); } private LinearTransformation createInverse() { if (slope != 0.0) { return new RegularLinearTransformation(1.0 / slope, -1.0 * yIntercept / slope, this);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBProtocolDecodingException.java
/** * Exception thrown when errors occur during SMB protocol message decoding. * Indicates that an SMB message could not be properly parsed or decoded due to * malformed data, protocol violations, or unsupported message formats. * * @author mbechler */ public class SMBProtocolDecodingException extends CIFSException { /** * */ private static final long serialVersionUID = 4862398838709265475L; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
cmd/metacache-bucket.go
return &bucketMetacache{ bucket: bucket, caches: make(map[string]metacache, 10), cachesRoot: make(map[string][]string, 10), } } func (b *bucketMetacache) debugf(format string, data ...any) { if serverDebugLog { console.Debugf(format+"\n", data...) } } // findCache will attempt to find a matching cache for the provided options. // If a cache with the same ID exists already it will be returned.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
/** * Interface defining NT status codes used in SMB1 protocol operations. * These status codes are returned by SMB servers to indicate the result * of requested operations. The codes follow the Windows NT status code format. */ public interface NtStatus { /* Don't bother to edit this. Everthing within the interface * block is automatically generated from the ntstatus package. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java
/** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. * * @return A string in the format "dictId:id" for display purposes */ public String getDisplayId() { return dictId + ":" + id; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0)