Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for Consistently (0.18 sec)

  1. guava/src/com/google/common/collect/Lists.java

       *
       * <p><b>Note:</b> if you won't be adding any elements to the list, use {@link ImmutableList#of()}
       * instead.
       *
       * <p><b>Performance note:</b> {@link ArrayList} and {@link java.util.ArrayDeque} consistently
       * outperform {@code LinkedList} except in certain rare and specific situations. Unless you have
       * spent a lot of time benchmarking your specific needs, use one of those instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

       *
       * <p><b>Note:</b> if you won't be adding any elements to the list, use {@link ImmutableList#of()}
       * instead.
       *
       * <p><b>Performance note:</b> {@link ArrayList} and {@link java.util.ArrayDeque} consistently
       * outperform {@code LinkedList} except in certain rare and specific situations. Unless you have
       * spent a lot of time benchmarking your specific needs, use one of those instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. src/go/types/generate_test.go

    					}
    				}
    			}
    		}
    		return true
    	})
    }
    
    // fixAtPosCall updates calls of the form atPos(x) to x.Pos() in argument lists of (check).dump calls.
    // TODO(gri) can we avoid this and just use atPos consistently in go/types and types2?
    func fixAtPosCall(f *ast.File) {
    	ast.Inspect(f, func(n ast.Node) bool {
    		switch n := n.(type) {
    		case *ast.CallExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/webhook_converter.go

    	// conversion that must result an empty object and practically is the same as nopConverter.
    	// A smoke test in API machinery calls the converter on empty objects. As this case happens consistently
    	// it special cased here not to call webhook converter. The test initiated here:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 19:37:55 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/math/IntMathTest.java

          int n = rand.nextInt(Integer.MAX_VALUE);
          assertEquals(LongMath.isPrime(n), IntMath.isPrime(n));
        }
      }
    
      private static int force32(int value) {
        // GWT doesn't consistently overflow values to make them 32-bit, so we need to force it.
        return value & 0xffffffff;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/IntMath.java

        }
        int div = p / q;
        int rem = p - q * div; // equal to p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/IntMath.java

        }
        int div = p / q;
        int rem = p - q * div; // equal to p % q
    
        if (rem == 0) {
          return div;
        }
    
        /*
         * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to
         * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of
         * p / q.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. pkg/controller/controller_utils.go

    // This cache is needed over plain old expectations to safely handle graceful
    // deletion. The desired behavior is to treat an update that sets the
    // DeletionTimestamp on an object as a delete. To do so consistently, one needs
    // to remember the expected deletes so they aren't double counted.
    // TODO: Track creates as well (#22599)
    type UIDTrackingControllerExpectations struct {
    	ControllerExpectationsInterface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    //
    //	type A struct{ X int }
    //	type B A
    //
    // the field X has two paths due to its membership of both A and B.
    // The For(obj) function always returns one of these paths, arbitrarily
    // but consistently.
    package objectpath
    
    import (
    	"fmt"
    	"go/types"
    	"strconv"
    	"strings"
    
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typesinternal"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_utils.go

    		if !predicate(&ownerRef) {
    			newRefs = append(newRefs, ownerRef)
    		}
    	}
    	return newRefs
    }
    
    // isClaimOwnerUpToDate returns false if the ownerRefs of the claim are not set consistently with the
    // PVC deletion policy for the StatefulSet.
    //
    // If there are stale references or unexpected controllers, this returns true in order to not touch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top