- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 6,031 for asString (0.1 sec)
-
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ClassMetaDataUtil.java
static void extractFromMetadata(File metaData, Set<String> excludedPackagePatterns, Action<ClassMetaData> extractor) { SimpleClassMetaDataRepository<ClassMetaData> repository = new SimpleClassMetaDataRepository<>(); repository.load(metaData); final Set<String> excludedPrefixes = new HashSet<>(); final Set<String> excludedPackages = new HashSet<>(); for (String excludePattern : excludedPackagePatterns) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.4K bytes - Viewed (0) -
migrator/column_type.go
// "INT", and "BIGINT". func (ct ColumnType) DatabaseTypeName() string { if ct.DataTypeValue.Valid { return ct.DataTypeValue.String } return ct.SQLColumnType.DatabaseTypeName() } // ColumnType returns the database type of the column. like `varchar(16)` func (ct ColumnType) ColumnType() (columnType string, ok bool) { return ct.ColumnTypeValue.String, ct.ColumnTypeValue.Valid }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Mar 24 01:31:58 UTC 2022 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java
static final String E11 = "1-1"; static final String E11_A = "1-1a"; static final String E12 = "1-2"; static final String E12_A = "1-2a"; static final String E12_B = "1-2b"; static final String E21 = "2-1"; static final String E13 = "1-3"; static final String E14 = "1-4"; static final String E23 = "2-3"; static final String E31 = "3-1"; static final String E34 = "3-4";
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
} @Override public SuggestItem parseSearchWords(final String[] words, final String[][] readings, final String[] fields, final String[] tags, final String[] roles, final long score, final ReadingConverter readingConverter, final Normalizer normalizer, final SuggestAnalyzer analyzer, final String[] langs) { try { final List<String> wordsList = new ArrayList<>(words.length);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 13.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
private final Map<String, ComponentHolder<?>> singletonMap = new ConcurrentHashMap<>(); private final Map<String, ComponentDef<?>> prototypeMap = new ConcurrentHashMap<>(); private boolean available = true; public StandardCrawlerContainer() { initialize(); } @Override public <T> T getComponent(final String name) { if ("crawlerContainer".equals(name)) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
private short logonCount; private short badPasswordCount; private String userName; private String userDisplayName; private String logonScript; private String profilePath; private String homeDirectory; private String homeDrive; private String serverName; private String domainName; private SID userSid; private SID groupSid; private SID[] groupSids;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
tests/test_tutorial/test_security/test_tutorial003_an_py39.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jul 07 17:12:13 UTC 2023 - 8.4K bytes - Viewed (0) -
common-protos/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto
// More info: http://kubernetes.io/docs/user-guide/node-selection/README // +optional map<string, string> nodeSelector = 7; // ServiceAccountName is the name of the ServiceAccount to use to run this carp. // More info: https://kubernetes.io/docs/concepts/security/service-accounts/ // +optional optional string serviceAccountName = 8; // DeprecatedServiceAccount is a depreciated alias for ServiceAccountName.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 7.7K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
} @CheckForNull private static String convertDottedQuadToHex(String ipString) { int lastColon = ipString.lastIndexOf(':'); String initialPart = ipString.substring(0, lastColon + 1); String dottedQuad = ipString.substring(lastColon + 1); byte[] quad = textToNumericFormatV4(dottedQuad); if (quad == null) { return null; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractorTest.java
final String content = xmlExtractor.getText(in, null).getContent(); CloseableUtil.closeQuietly(in); logger.info(content); assertTrue(content.contains("ใในใ")); } public void test_getXml_entity() { final InputStream in = ResourceUtil.getResourceAsStream("extractor/test_entity.xml"); final String content = xmlExtractor.getText(in, null).getContent();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 6.4K bytes - Viewed (0)