- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 614 for sata (0.03 sec)
-
DerReader.kt
java.math.BigInteger L19:import java.net.ProtocolException L20:import okio.Buffer L21:import okio.BufferedSource L22:import okio.ByteString L23:import okio.ForwardingSource L24:import okio.Source L25:import okio.buffer L26: L27:/** L28: * Streaming decoder of data encoded following Abstract Syntax Notation One (ASN.1). There are L29: * multiple variants of ASN.1, including: L30: * L31: * * DER: Distinguished Encoding Rules. This further constrains ASN.1 for deterministic encoding. L32: * * BER: Basic Encoding...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 10.5K bytes -
AdminMaintenanceAction.java
zos.putNextEntry(entry); L226: SearchEngineUtil.scroll(index, hit -> { L227: final String data = "{\"index\":{\"_index\":\"" + index + "\",\"_id\":\"" + StringEscapeUtils.escapeJson(hit.getId()) L228: + "\"}}\n" + hit.getSourceAsString() + "\n"; L229: try { L230: zos.write(data.getBytes(Constants.CHARSET_UTF_8)); L231: } catch (final IOException e) { L232: logger.warn("Failed...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 14K bytes -
jsconf.js
ction(a){"use strict";a.formUtils.registerLoadedModule("jsconf"),a.setupValidation=function(b){var c=a(b.form||"form");a.each(b.validate||b.validation||{},function(b,d){var e;e="#"===b[0]?a(b):"."===b[0]?c.find(b):c.find('*[name="'+b+'"]'),e.attr("data-validation",d.validation),a.each(d,function(a,b){"validation"!==a&&b!==!1&&(b===!0&&(b="true"),"_"===a[0]?(a=a.substring(1),b===!1?e.removeAttr(a):e.attr(a,b)):e.valAttr(a,b))})}),a.validate(b)}}(a)});...github.com/codelibs/fess/src/main/webapp/js/adm...Mon Jan 01 05:12:47 UTC 2018 867 bytes -
SortedCopyBenchmark.java
L23:import java.util.ArrayList; L24:import java.util.Collections; L25:import java.util.LinkedHashSet; L26:import java.util.List; L27:import java.util.Random; L28:import java.util.Set; L29:import java.util.TreeSet; L30: L31:/** L32: * Provides supporting data for performance notes in the documentation of {@link L33: * Ordering#sortedCopy} and {@link Ordering#immutableSortedCopy}, as well as for automated code L34: * suggestions. L35: * L36: */ L37:public class SortedCopyBenchmark { L38: @Param({"1", "10",...github.com/google/guava/android/guava-tests/ben...Wed Oct 30 16:15:19 UTC 2024 3.5K bytes -
littleAdjustmentMap.dfprop
= LOGGING L70: # - - - - - - - - - -/ L71: L72: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L73: # o isEntityConvertEmptyStringToNull: (NotRequired - Default false) L74: # [true] L75: # Convert empty-string data to null in entity. L76: # L77: #; isEntityConvertEmptyStringToNull = false L78: # - - - - - - - - - -/ L79: L80: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L81: # o isTableDispNameUpperCase: (NotRequired - Default...github.com/codelibs/fess/dbflute_fess/dfprop/li...Sat Jul 25 06:04:16 UTC 2015 8.8K bytes -
TestListMultimapGenerator.java
L19:import com.google.common.annotations.GwtCompatible; L20:import com.google.common.collect.ListMultimap; L21:import org.checkerframework.checker.nullness.qual.Nullable; L22: L23:/** L24: * A generator for {@code ListMultimap} implementations based on test data. L25: * L26: * @author Louis Wasserman L27: */ L28:@GwtCompatible L29:@ElementTypesAreNonnullByDefault L30:public interface TestListMultimapGenerator<K extends @Nullable Object, V extends @Nullable Object> L31: extends TestMultimapGenerator<K, V,...github.com/google/guava/guava-testlib/src/com/g...Wed Feb 21 16:49:06 UTC 2024 1.1K bytes -
Table.java
given row key may be viewed as a {@link Map} whose keys are L36: * the columns. The reverse is also available, associating a column with a row key / value map. Note L37: * that, in some implementations, data access by column key may have fewer supported operations or L38: * worse performance than data access by row key. L39: * L40: * <p>The methods returning collections or maps always return views of the underlying table. L41: * Updating the table can change the contents of those collections, and updating...github.com/google/guava/android/guava/src/com/g...Sat Jun 17 14:40:53 UTC 2023 10.7K bytes -
BitString.kt
permissions and L14: * limitations under the License. L15: */ L16:package okhttp3.tls.internal.der L17: L18:import okio.ByteString L19: L20:/** L21: * Like a [ByteString], but whose bits are not necessarily a strict multiple of 8. L22: */ L23:internal data class BitString( L24: val byteString: ByteString, L25: /** 0-7 unused bits in the last byte. */ L26: val unusedBitsCount: Int, L27:) { L28: // Avoid Long.hashCode(long) which isn't available on Android 5. L29: override fun hashCode(): Int { L30:...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 1.1K bytes -
Story.kt
License. L15: */ L16:package okhttp3.internal.http2.hpackjson L17: L18:/** L19: * Representation of one story, a set of request headers to encode or decode. This class is used L20: * reflectively with Moshi to parse stories from files. L21: */ L22:data class Story( L23: val description: String? = null, L24: val cases: List<Case>, L25: val fileName: String? = null, L26:) { L27: // Used as the test name. L28: override fun toString() = fileName ?: "?" L29: L30: companion object { L31: @JvmField...github.com/square/okhttp/okhttp-hpacktests/src/...Mon Jan 08 01:13:22 UTC 2024 1.1K bytes -
TestmailPostcard.java
postbox.post(postcard); L40: return postcard; L41: } L42: L43: // =================================================================================== L44: // Meta Data L45: // ========= L46: @Override L47: protected String getBodyFile() { L48: return PATH; L49: } L50: L51: @Override L52: protected String[] getPropertyNames()...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.9K bytes