Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 261 for 31 (0.06 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

      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";
      static final String E41 = "4-1";
      static final String E15 = "1-5";
      static final String EDGE_NOT_IN_GRAPH = "edgeNotInGraph";
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Chars.java

            return true;
          }
          return super.equals(object);
        }
    
        @Override
        public int hashCode() {
          int result = 1;
          for (int i = start; i < end; i++) {
            result = 31 * result + Chars.hashCode(array[i]);
          }
          return result;
        }
    
        @Override
        public String toString() {
          StringBuilder builder = new StringBuilder(size() * 3);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Shorts.java

            return true;
          }
          return super.equals(object);
        }
    
        @Override
        public int hashCode() {
          int result = 1;
          for (int i = start; i < end; i++) {
            result = 31 * result + Shorts.hashCode(array[i]);
          }
          return result;
        }
    
        @Override
        public String toString() {
          StringBuilder builder = new StringBuilder(size() * 6);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Shorts.java

            return true;
          }
          return super.equals(object);
        }
    
        @Override
        public int hashCode() {
          int result = 1;
          for (int i = start; i < end; i++) {
            result = 31 * result + Shorts.hashCode(array[i]);
          }
          return result;
        }
    
        @Override
        public String toString() {
          StringBuilder builder = new StringBuilder(size() * 6);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Aug 27 16:47:48 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

        TypeWithDuplicates a = new TypeWithDuplicates(1, 1);
        TypeWithDuplicates b1 = new TypeWithDuplicates(2, 1);
        TypeWithDuplicates b2 = new TypeWithDuplicates(2, 2);
        TypeWithDuplicates c = new TypeWithDuplicates(3, 1);
        CollectorTester.of(collector, equivalence)
            .expectCollects(
                ImmutableMultiset.<TypeWithDuplicates>builder().add(a).addCopies(b1, 2).add(c).build(),
                a,
                b1,
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/math/IntMathTest.java

        // parseInt blows up on overflow as opposed to intValue() which does not.
        return Integer.parseInt(bigMean.toString());
      }
    
      private static boolean fitsInInt(BigInteger big) {
        return big.bitLength() <= 31;
      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
      public void testNullPointers() {
        NullPointerTester tester = new NullPointerTester();
        tester.setDefault(int.class, 1);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.24.md

      - kubelet v1.26.8
      - kubelet v1.25.13
      - kubelet v1.24.17
    
    This vulnerability was reported by Tomer Peled @tomerpeled92
    
    
    **CVSS Rating:** High (8.8) [CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H](https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H)
    
    
    ### CVE-2023-3955: Insufficient input sanitization on Windows nodes leads to privilege escalation
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableList.java

        return Lists.equalsImpl(this, obj);
      }
    
      @Override
      public int hashCode() {
        int hashCode = 1;
        int n = size();
        for (int i = 0; i < n; i++) {
          hashCode = 31 * hashCode + get(i).hashCode();
    
          hashCode = ~~hashCode;
          // needed to deal with GWT integer overflow
        }
        return hashCode;
      }
    
      /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/graph/GraphsTest.java

      private static final String E12_A = "1-2a";
      private static final String E12_B = "1-2b";
      private static final String E21 = "2-1";
      private static final String E13 = "1-3";
      private static final String E31 = "3-1";
      private static final String E34 = "3-4";
      private static final String E44 = "4-4";
      private static final int NODE_COUNT = 20;
      private static final int EDGE_COUNT = 20;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 02 18:21:29 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. cmd/metrics-v2_gen.go

    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *MetricsGroupOpts) Msgsize() (s int) {
    	s = 1 + 22 + msgp.BoolSize + 24 + msgp.BoolSize + 31 + msgp.BoolSize + 28 + msgp.BoolSize + 16 + msgp.BoolSize + 11 + msgp.BoolSize + 29 + msgp.BoolSize + 19 + msgp.BoolSize + 23 + msgp.BoolSize + 26 + msgp.BoolSize + 32 + msgp.BoolSize + 22 + msgp.BoolSize
    	return
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top