Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for executeTask (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java

            returnValue += listenerLatch.getCount();
          }
          returnValue += listenerLatch.getCount();
        }
        return returnValue;
      }
    
      private final Runnable executeTask =
          new Runnable() {
            @Override
            public void run() {
              list.execute();
            }
          };
    
      @Benchmark
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jul 16 17:42:14 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  2. src/test/java/jcifs/ACETest.java

                // Execute permission
                int executeMask = ACE.FILE_EXECUTE | ACE.FILE_READ_ATTRIBUTES | ACE.READ_CONTROL;
                assertTrue((executeMask & ACE.FILE_EXECUTE) != 0, "Execute should include FILE_EXECUTE");
                assertFalse((executeMask & ACE.FILE_WRITE_DATA) != 0, "Execute should not include write access");
            }
    
            @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.4K bytes
    - Click Count (0)
Back to Top