- Sort Score
- Result 10 results
- Languages All
Results 4471 - 4480 of 7,602 for _class (0.07 sec)
-
guava/src/com/google/common/io/LineBuffer.java
import com.google.common.annotations.J2ktIncompatible; import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.io.IOException; /** * Package-protected abstract class that implements the line reading algorithm used by {@link * LineReader}. Line separators are per {@link java.io.BufferedReader}: line feed, carriage return, * or carriage return followed immediately by a linefeed. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 28 20:13:02 UTC 2023 - 3.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingQueue.java
* override {@code offer} as well, either providing your own implementation, or delegating to the * provided {@code standardOffer} method. * * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code * default} methods. Instead, it inherits their default implementations. When those implementations * invoke methods, they invoke methods on the {@code ForwardingQueue}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * @author mbechler * */ public class Smb2CloseResponse extends ServerMessageBlock2Response implements SmbBasicFileInfo { private static final Logger log = LoggerFactory.getLogger(Smb2CloseResponse.class); /** * */ public static final int SMB2_CLOSE_FLAG_POSTQUERY_ATTIB = 0x1; private final byte[] fileId;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/AutobahnTester.kt
import okhttp3.internal.USER_AGENT import okio.ByteString /** * Exercises the web socket implementation against the * [Autobahn Testsuite](http://autobahn.ws/testsuite/). */ class AutobahnTester { val client = OkHttpClient() private fun newWebSocket( path: String, listener: WebSocketListener, ): WebSocket { val request = Request.Builder()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
import java.text.SimpleDateFormat; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatUtil; /** * {@link Float}用の変換ユーティリティです。 * * @author higa */ public abstract class FloatConversionUtil { /** * {@link Float}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@link Float} */ public static Float toFloat(final Object o) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/math/LongMathBenchmark.java
import com.google.caliper.BeforeExperiment; import com.google.caliper.Benchmark; /** * Benchmarks for the non-rounding methods of {@code LongMath}. * * @author Louis Wasserman */ public class LongMathBenchmark { private static final int[] exponents = new int[ARRAY_SIZE]; private static final int[] factorialArguments = new int[ARRAY_SIZE]; private static final int[][] binomialArguments = new int[ARRAY_SIZE][2];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
import javax.naming.NamingException; import org.codelibs.core.exception.NamingRuntimeException; /** * {@link javax.naming.InitialContext 初期コンテキスト}を扱うためのユーティリティ・クラスです。 * * @author higa */ public abstract class InitialContextUtil { /** * 初期コンテキストを作成して返します。 * * @return 初期コンテキスト */ public static InitialContext create() { try { return new InitialContext();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc; import java.io.IOException; import jcifs.smb1.dcerpc.ndr.*; public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants { protected int ptype = -1; protected int flags = 0; protected int length = 0; protected int call_id = 0; protected int alloc_hint = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComWriteAndX.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.smb1; import jcifs.smb1.Config; import jcifs.smb1.util.*; class SmbComWriteAndX extends AndXServerMessageBlock { private static final int READ_ANDX_BATCH_LIMIT = Config.getInt( "jcifs.smb1.smb.client.WriteAndX.ReadAndX", 1 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.util; public class Base64 { private static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * Base-64 encodes the supplied block of data. Line wrapping is not
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.7K bytes - Viewed (0)