- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 190 for getTest (2.77 sec)
-
src/test/java/org/codelibs/core/collection/SLinkedListTest.java
- assertThat(e.getPrevious(), is(nullValue()));
- assertThat(e.getNext().getElement(), is("2"));
- e = list.getLastEntry();
- assertThat(e.getNext(), is(nullValue()));
- assertThat(e.getPrevious().getElement(), is("2"));
- list.getEntry(1).remove();
- assertThat(list.getFirst(), is("1"));
- assertThat(list.getLast(), is("3"));
- list.getLastEntry().remove();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/nl/docs/features.md
- ### Getest
- * 100% <abbr title="De hoeveelheid code die automatisch wordt getest">van de code is getest</abbr>.
- * 100% <abbr title="Python type annotaties, hiermee kunnen je editor en externe tools je beter ondersteunen">type geannoteerde</abbr> codebase.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 03 13:50:38 UTC 2024 - 10.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
- final AuthScheme authScheme = authentication.getAuthScheme();
- if (authScope.getHost() != null && authScheme != null) {
- final HttpHost targetHost = new HttpHost(authScope.getHost(), authScope.getPort());
- authCache.put(targetHost, authScheme);
- }
- }
- httpClientContext.setAuthCache(authCache);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 10K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
- }
- public void testGetNext_withDefault_two() {
- Iterator<String> iterator = asList("foo", "bar").iterator();
- assertEquals("foo", Iterators.getNext(iterator, "x"));
- }
- public void testGetLast_basic() {
- List<String> list = newArrayList();
- list.add("a");
- list.add("b");
- assertEquals("b", getLast(list.iterator()));
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
- }
- public void testGetNext_withDefault_two() {
- Iterator<String> iterator = asList("foo", "bar").iterator();
- assertEquals("foo", Iterators.getNext(iterator, "x"));
- }
- public void testGetLast_basic() {
- List<String> list = newArrayList();
- list.add("a");
- list.add("b");
- assertEquals("b", getLast(list.iterator()));
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
- Iterators.advance(iterator, position);
- return Iterators.getNext(iterator, defaultValue);
- }
- }
- /**
- * Returns the first element in {@code iterable} or {@code defaultValue} if the iterable is empty.
- * The {@link Iterators} analog to this method is {@link Iterators#getNext}.
- *
- * <p>If no default value is desired (and the caller instead wants a {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 24 19:38:27 UTC 2024 - 42.8K bytes - Viewed (0) -
cmd/warm-backend-azure.go
- azMeta[k] = to.Ptr(v)
- }
- resp, err := az.clnt.UploadStream(ctx, az.Bucket, az.getDest(object), io.LimitReader(r, length), &azblob.UploadStreamOptions{
- Concurrency: 4,
- AccessTier: az.tier(), // set tier if specified
- Metadata: azMeta,
- })
- if err != nil {
- return "", azureToObjectError(err, az.Bucket, az.getDest(object))
- }
- vid := ""
- if resp.VersionID != nil {
- vid = *resp.VersionID
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 7K bytes - Viewed (0) -
cmd/warm-backend-s3.go
- func (s3 *warmBackendS3) ToObjectError(err error, params ...string) error {
- object := ""
- if len(params) >= 1 {
- object = params[0]
- }
- return ErrorRespToObjectError(err, s3.Bucket, s3.getDest(object))
- }
- func (s3 *warmBackendS3) getDest(object string) string {
- destObj := object
- if s3.Prefix != "" {
- destObj = fmt.Sprintf("%s/%s", s3.Prefix, object)
- }
- return destObj
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 5.7K bytes - Viewed (0) -
cmd/warm-backend-gcs.go
- }
- func (gcs *warmBackendGCS) getDest(object string) string {
- destObj := object
- if gcs.Prefix != "" {
- destObj = fmt.Sprintf("%s/%s", gcs.Prefix, object)
- }
- return destObj
- }
- func (gcs *warmBackendGCS) PutWithMeta(ctx context.Context, key string, data io.Reader, length int64, meta map[string]string) (remoteVersionID, error) {
- object := gcs.client.Bucket(gcs.Bucket).Object(gcs.getDest(key))
- w := object.NewWriter(ctx)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 6.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java
- public void testSubList_startNegative() {
- assertThrows(IndexOutOfBoundsException.class, () -> getList().subList(-1, 0));
- }
- public void testSubList_endTooLarge() {
- assertThrows(IndexOutOfBoundsException.class, () -> getList().subList(0, getNumElements() + 1));
- }
- public void testSubList_startGreaterThanEnd() {
- try {
- getList().subList(1, 0);
- fail("subList(1, 0) should throw");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13.3K bytes - Viewed (0)