- Sort Score
- Result 10 results
- Languages All
Results 1361 - 1370 of 1,618 for complements (0.08 sec)
-
internal/etag/etag.go
if !e.IsEncrypted() { return e } return e[len(e)-16:] } var _ Tagger = ETag{} // compiler check // ETag returns the ETag itself. // // By providing this method ETag implements // the Tagger interface. func (e ETag) ETag() ETag { return e } // FromContentMD5 decodes and returns the Content-MD5 // as ETag, if set. If no Content-MD5 header is set // it returns an empty ETag and no error.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Mar 10 21:09:36 UTC 2024 - 13.3K bytes - Viewed (0) -
guava/src/com/google/common/io/ByteStreams.java
public static ByteArrayDataInput newDataInput(ByteArrayInputStream byteArrayInputStream) { return new ByteArrayDataInputStream(checkNotNull(byteArrayInputStream)); } private static class ByteArrayDataInputStream implements ByteArrayDataInput { final DataInput input; ByteArrayDataInputStream(ByteArrayInputStream byteArrayInputStream) { this.input = new DataInputStream(byteArrayInputStream); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 29.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
return ObjectArrays.concat(a, b, Double.class); } @J2ktIncompatible @GwtIncompatible // used only from suite public abstract static class TestDoubleListGenerator implements TestListGenerator<Double> { @Override public SampleElements<Double> samples() { return new SampleDoubles(); } @Override public List<Double> create(Object... elements) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
import java.util.Date; import jcifs.smb1.Config; import jcifs.smb1.util.Hexdump; import jcifs.smb1.util.LogStream; import jcifs.smb1.util.transport.*; abstract class ServerMessageBlock extends Response implements Request, SmbConstants { static LogStream log = LogStream.getInstance(); static final byte[] header = { (byte)0xFF, (byte)'S', (byte)'M', (byte)'B',
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
if (!"Failed to connect: /0:0:0:0:0:0:0:1".equals(e.getMessage())) { throw e; } } } private static class TestDfsReferral implements DfsReferralData { private String server; private String share; private String path; private int pathConsumed; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
src/bufio/bufio_test.go
t.Errorf("NewWriterSize's Writer.Size = %d; want %d", got, want) } } // An onlyReader only implements io.Reader, no matter what other methods the underlying implementation may have. type onlyReader struct { io.Reader } // An onlyWriter only implements io.Writer, no matter what other methods the underlying implementation may have. type onlyWriter struct { io.Writer }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Nov 01 21:52:12 UTC 2024 - 51.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java
import org.codelibs.fess.es.config.bsentity.BsDataConfig; import org.codelibs.fess.util.ParameterUtil; /** * @author FreeGen */ public class DataConfig extends BsDataConfig implements CrawlingConfig { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(DataConfig.class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 18.5K bytes - Viewed (0) -
android/guava/src/com/google/common/math/PairedStats.java
* * @author Pete Gillin * @since 20.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class PairedStats implements Serializable { private final Stats xStats; private final Stats yStats; private final double sumOfProductsOfDeltas; /** * Internal constructor. Users should use {@link PairedStatsAccumulator#snapshot}.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 12.6K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
if entry.maxRttMs < rttMs { entry.maxRttMs = rttMs } entry.rttMsSum += rttMs entry.successRequestCount++ } else { entry.failedRequestCount++ } } // AuthNPlugin - implements pluggable authentication via webhook. type AuthNPlugin struct { args Args client *http.Client shutdownCtx context.Context serviceMetrics *metrics }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
import jcifs.internal.smb2.io.Smb2WriteRequest; import jcifs.internal.smb2.io.Smb2WriteResponse; import jcifs.util.Encdec; /** * * * */ public class SmbRandomAccessFile implements SmbRandomAccess { private static final Logger log = LoggerFactory.getLogger(SmbRandomAccessFile.class); private static final int WRITE_OPTIONS = 0x0842; private SmbFile file; private long fp;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 12:01:33 UTC 2020 - 18.5K bytes - Viewed (0)