Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Sem (0.16 sec)

  1. src/main/java/jcifs/smb1/UniAddress.java

                } finally {
                    synchronized( sem ) {
                        sem.count--;
                        sem.notify();
                    }
                }
            }
        }
    
        static NbtAddress lookupServerOrWorkgroup( String name, InetAddress svr )
                                                        throws UnknownHostException {
            Sem sem = new Sem( 2 );
            int type = NbtAddress.isWINS( svr ) ? 0x1b : 0x1d;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            Sem sem = new Sem(2);
            int type = isWINS(svr) ? 0x1b : 0x1d;
    
            QueryThread q1x = new QueryThread(sem, name, type, null, svr, this.transportContext);
            QueryThread q20 = new QueryThread(sem, name, 0x20, null, svr, this.transportContext);
            q1x.setDaemon(true);
            q20.setDaemon(true);
            try {
                synchronized ( sem ) {
                    q1x.start();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/SourceSinkTester.java

              + "platea dictumst. Pellentesque molestie, nibh nec iaculis luctus, justo sem lobortis "
              + "enim, at feugiat leo magna nec libero. Mauris quis odio eget nisl rutrum cursus nec "
              + "eget augue. Sed nec arcu sem. In hac habitasse platea dictumst.";
    
      static final ImmutableMap<String, String> TEST_STRINGS =
          ImmutableMap.<String, String>builder()
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Apr 27 18:57:08 GMT 2022
    - 4.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/SourceSinkTester.java

              + "platea dictumst. Pellentesque molestie, nibh nec iaculis luctus, justo sem lobortis "
              + "enim, at feugiat leo magna nec libero. Mauris quis odio eget nisl rutrum cursus nec "
              + "eget augue. Sed nec arcu sem. In hac habitasse platea dictumst.";
    
      static final ImmutableMap<String, String> TEST_STRINGS =
          ImmutableMap.<String, String>builder()
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 27 18:57:08 GMT 2022
    - 4.9K bytes
    - Viewed (0)
Back to top