Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 262 for skipping (0.16 sec)

  1. android/guava/src/com/google/common/base/Joiner.java

            throw new UnsupportedOperationException("already specified useForNull");
          }
        };
      }
    
      /**
       * Returns a joiner with the same behavior as this joiner, except automatically skipping over any
       * provided null elements.
       */
      public Joiner skipNulls() {
        return new Joiner(this) {
          @Override
          public <A extends Appendable> A appendTo(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

                        Response response = this.response_map.get(key);
                        if ( response == null ) {
                            if ( log.isDebugEnabled() ) {
                                log.debug("Unexpected message id, skipping message " + key);
                            }
                            doSkip(key);
                        }
                        else {
                            doRecv(response);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       once. This reduces the expense of habitually making defensive copies at API boundaries.
     *       However, the precise conditions for skipping the copy operation are undefined.
     *   <li><b>Warning:</b> a view collection such as {@link ImmutableMap#keySet} or {@link
     *       ImmutableList#subList} may retain a reference to the entire data set, preventing it from
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  4. cmd/batch-expire.go

    					ExpireAll:  true,
    				})
    				continue
    			}
    		} else if prevObj.Name == result.Name {
    			if matchedFilter.Purge.RetainVersions == 0 {
    				continue // including latest version in toDel suffices, skipping other versions
    			}
    			versionsCount++
    		} else {
    			continue
    		}
    
    		if versionsCount <= matchedFilter.Purge.RetainVersions {
    			continue // retain versions
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 21K bytes
    - Viewed (1)
  5. android/guava/src/com/google/common/collect/StandardTable.java

       * {@inheritDoc}
       *
       * <p>The returned set has an iterator that does not support {@code remove()}.
       *
       * <p>The set's iterator traverses the columns of the first row, the columns of the second row,
       * etc., skipping any columns that have appeared previously.
       */
      @Override
      public Set<C> columnKeySet() {
        Set<C> result = columnKeySet;
        return (result == null) ? columnKeySet = new ColumnKeySet() : result;
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 29.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/FluentIterableTest.java

        list.subList(0, 2).clear();
        assertThat(tail).isEmpty();
      }
    
      public void testSkip_illegalArgument() {
        try {
          FluentIterable.from(asList("a", "b", "c")).skip(-1);
          fail("Skipping negative number of elements should throw IllegalArgumentException.");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testLimit() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 18:35:19 GMT 2024
    - 31.1K bytes
    - Viewed (0)
  7. istioctl/pkg/describe/describe.go

    		FieldSelector: "status.phase=Running",
    	})
    	if err != nil {
    		return multierror.Prefix(err, "Could not find ingress gateway pods")
    	}
    	if len(pods.Items) == 0 {
    		fmt.Fprintf(writer, "Skipping Gateway information (no ingress gateway pods)\n")
    		return nil
    	}
    	// key: namespace
    	ingressPods := map[string][]*corev1.Pod{}
    	ingressNss := sets.New[string]()
    	for i, pod := range pods.Items {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/FluentIterableTest.java

        list.subList(0, 2).clear();
        assertThat(tail).isEmpty();
      }
    
      public void testSkip_illegalArgument() {
        try {
          FluentIterable.from(asList("a", "b", "c")).skip(-1);
          fail("Skipping negative number of elements should throw IllegalArgumentException.");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testLimit() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 06 17:32:08 GMT 2023
    - 30.6K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool-decom.go

    						continue
    					}
    
    					// `.usage-cache.bin` still exists, must be not readable ignore it.
    					if bi.Name == minioMetaBucket && strings.Contains(version.Name, dataUsageCacheName) {
    						// skipping bucket usage cache name, as its autogenerated.
    						continue
    					}
    
    					versionsFound++
    				}
    			}); err != nil {
    				return err
    			}
    
    			if versionsFound > 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 41.5K bytes
    - Viewed (1)
  10. helm-releases/minio-3.4.3.tgz

    `true` if [ $PURGE = true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else echo "Bucket '$BUCKET' does not exist, skipping purge." fi fi # Create the bucket if it does not exist if ! checkBucketExists $BUCKET ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi # set versioning for bucket if [ ! -z $VERSIONING...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Dec 21 20:55:50 GMT 2021
    - 17.7K bytes
    - Viewed (0)
Back to top