Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for sumHolder (0.09 sec)

  1. guava-tests/benchmark/com/google/common/collect/IteratorBenchmark.java

      }
    
      @Benchmark
      int arrayListForWithHolder(int reps) {
        int[] sumHolder = {0};
        for (int i = 0; i < reps; i++) {
          for (Object value : arrayList) {
            sumHolder[0] += value.hashCode();
          }
        }
        return sumHolder[0];
      }
    
      @Benchmark
      int arrayListForEachWithHolder(int reps) {
        int[] sumHolder = {0};
        for (int i = 0; i < reps; i++) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ACE.java

         * 
         * @return the access mask
         */
        int getAccessMask ();
    
    
        /**
         * Returns the 'Apply To' text for inheritance of ACEs on
         * directories such as 'This folder, subfolder and files'. For
         * files the text is always 'This object only'.
         * 
         * @return descriptive text for the ACE scope
         */
        String getApplyToText ();
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ACE.java

         */
        public int getFlags() {
            return flags;
        }
        /**
         * Returns the 'Apply To' text for inheritance of ACEs on
         * directories such as 'This folder, subfolder and files'. For
         * files the text is always 'This object only'.
         */
        public String getApplyToText() {
            switch (flags & (FLAGS_OBJECT_INHERIT | FLAGS_CONTAINER_INHERIT | FLAGS_INHERIT_ONLY)) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
Back to top