- Sort Score
- Result 10 results
- Languages All
Results 1111 - 1120 of 6,132 for trying (0.05 sec)
-
internal/s3select/jstream/README.md
depth start end type | value 2 018 023 string | "RGB" 3 041 046 string | "red" 3 048 055 string | "green" 3 057 063 string | "blue" 2 039 065 array | ["red","green","blue"] 1 004 069 object | {"colors":["red","green","blue"],"desc":"RGB"} 2 087 093 string | "CMYK" 3 111 117 string | "cyan" 3 119 128 string | "magenta" 3 130 138 string | "yellow" 3 140 147 string | "black"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 23 19:35:41 UTC 2024 - 3.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java
@Override protected List<String> create(String[] elements) { return ImmutableList.copyOf(elements); } } public static class BuilderAddListGenerator extends TestStringListGenerator { @Override protected List<String> create(String[] elements) { ImmutableList.Builder<String> builder = ImmutableList.<String>builder(); for (String element : elements) { builder.add(element);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/EmptyIteratorTest.java
final EmptyIterator<String> emptyIterator = new EmptyIterator<String>(); emptyIterator.remove(); } /** * Test method for * {@link org.codelibs.core.collection.EmptyIterator#hasNext()}. */ @Test public void testHasNext() { final EmptyIterator<String> emptyIterator = new EmptyIterator<String>(); assertThat(emptyIterator.hasNext(), is(false));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/TestThread.java
} } private static class Request { final String methodName; final Object[] arguments; Request(String methodName, Object[] arguments) { this.methodName = checkNotNull(methodName); this.arguments = checkNotNull(arguments); } } private static class Response { final String methodName; final Object result; final Throwable throwable;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 10.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java
int startCount; int requestCount; int exceptionCount; int endCount; String requestUrl; String exceptionUrl; String requestMethod; @Override public void onRequestStart(final FaultTolerantClient client, final RequestData request) { startCount++; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java
private final List<Pair<String, String>> searchFieldLogList = new ArrayList<>(); private final List<Pair<String, String>> headerList = new ArrayList<>(); private OptionalEntity<UserInfo> userInfo; private Map<String, Object> fields; private final List<Map<String, Object>> documentList = new ArrayList<>(); @Override public String getId() { return asDocMeta().id(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
} public void testMarkAndReset() throws IOException { String string = "abcdefghijklmnopqrstuvwxyz"; CharSequenceReader reader = new CharSequenceReader(string); assertTrue(reader.markSupported()); assertEquals(string, readFully(reader)); assertFullyRead(reader); // reset and read again reader.reset(); assertEquals(string, readFully(reader)); assertFullyRead(reader);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
} public static void updateObjectTags(final String objectName, final Map<String, String> tagItems) { final Map<String, String> tags = new HashMap<>(); tagItems.keySet().stream().filter(s -> s.startsWith("name")).forEach(nameKey -> { final String valueKey = nameKey.replace("name", "value"); final String name = tagItems.get(nameKey); if (StringUtil.isNotBlank(name)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 19.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/TraverserUtilTest.java
assertThat(traverser.isExistClass(DummyTest.class.getName()), is(true)); assertThat(traverser.isExistClass(TestCase.class.getName()), is(not(true))); final Set<String> set = new HashSet<String>(); traverser.forEach((ClassHandler) (packageName, shortClassName) -> set.add(ClassUtil.concatName(packageName, shortClassName))); assertThat(set.size() > 0, is(true));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6.4K bytes - Viewed (0) -
istioctl/pkg/authz/listener.go
return } actionToPolicy := map[rbacpb.RBAC_Action]map[string]struct{}{} policyToRule := map[string]map[string]struct{}{} addPolicy := func(action rbacpb.RBAC_Action, name string, rule string) { if actionToPolicy[action] == nil { actionToPolicy[action] = map[string]struct{}{} } if policyToRule[name] == nil { policyToRule[name] = map[string]struct{}{} } actionToPolicy[action][name] = struct{}{}
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Sep 11 15:29:30 UTC 2023 - 6K bytes - Viewed (0)