Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,580 for halse (1.34 sec)

  1. android/guava-tests/test/com/google/common/collect/TablesTransposeRowTest.java

    import com.google.common.collect.TableCollectionTest.RowTests;
    
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class TablesTransposeRowTest extends RowTests {
      public TablesTransposeRowTest() {
        super(false, true, true, true, false);
      }
    
      @Override
      Table<Character, String, Integer> makeTable() {
        Table<String, Character, Integer> original = TreeBasedTable.create();
        return Tables.transpose(original);
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/DfsTest.java

        }
    
    
        @Test
        public void resolveRootNotExist () throws CIFSException, URISyntaxException {
            DfsReferralData ref = doResolve("\\doesnotexist\\", null, false);
            assertNull(ref);
    
            ref = doResolve("\\deep\\doesnotexist\\", null, false);
            assertNull(ref);
        }
    
    
        @Test
        public void resolveNonDfs () throws CIFSException {
            CIFSContext context = getContext();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CartesianList.java

      public boolean contains(@CheckForNull Object object) {
        if (!(object instanceof List)) {
          return false;
        }
        List<?> list = (List<?>) object;
        if (list.size() != axes.size()) {
          return false;
        }
        int i = 0;
        for (Object o : list) {
          if (!axes.get(i).contains(o)) {
            return false;
          }
          i++;
        }
        return true;
      }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/EnumTest.java

                    b.createNewFile();
                    boolean haveHidden = false;
                    try {
                        b.setAttributes(SmbConstants.ATTR_HIDDEN);
                        haveHidden = true;
                    }
                    catch ( SmbUnsupportedOperationException e ) {}
    
                    c.createNewFile();
                    boolean haveArchive = false;
                    try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private static void addTests(TestSuite suite, Method method) {
        if (isGuarded(method)) {
          for (boolean fair1 : new boolean[] {true, false}) {
            for (boolean fair2 : new boolean[] {true, false}) {
              suite.addTest(generateGuardWithWrongMonitorTestCase(method, fair1, fair2));
            }
          }
        }
        if (isAnyEnter(method)) {
          addTests(
              suite,
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 27.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnMapTest.java

    import java.util.Map;
    
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class TablesTransformValuesColumnMapTest extends ColumnMapTests {
      public TablesTransformValuesColumnMapTest() {
        super(false, true, true, false);
      }
    
      @Override
      Table<Integer, String, Character> makeTable() {
        Table<Integer, String, String> original = HashBasedTable.create();
        return Tables.transformValues(original, FIRST_CHARACTER);
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesCheckedException() throws Exception {
        Exception expectedException = new Exception() {};
        runExpectedExceptionCatchingAsyncTest(expectedException, false);
      }
    
      public void testCatchingAsync_fallbackGeneratesError() throws Exception {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java

    package jcifs.smb1.netbios;
    
    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest( Name name ) {
            questionName = name;
            questionType = NBSTAT;
            isRecurDesired = false;
            isBroadcast = false;
        }
    
        int writeBodyWireFormat( byte[] dst, int dstIndex ) {
            int tmp = questionName.hexCode;
            questionName.hexCode = 0x00; // type has to be 0x00 for node status
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InetAddresses.java

          for (int i = 0; i < 10; i++) {
            if (bytes[i] != 0) {
              return false;
            }
          }
          for (int i = 10; i < 12; i++) {
            if (bytes[i] != (byte) 0xff) {
              return false;
            }
          }
          return true;
        }
        return false;
      }
    
      /**
       * Coerces an IPv6 address into an IPv4 address.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  10. android/guava-tests/test/com/google/common/graph/StandardMutableUndirectedGraphTest.java

      @Parameters(name = "allowsSelfLoops={0}, incidentEdgeOrder={1}")
      public static Collection<Object[]> parameters() {
        return Arrays.asList(
            new Object[][] {
              {false, ElementOrder.unordered()},
              {true, ElementOrder.unordered()},
              {false, ElementOrder.stable()},
              {true, ElementOrder.stable()},
            });
      }
    
      private final boolean allowsSelfLoops;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Mar 10 17:54:18 GMT 2020
    - 2K bytes
    - Viewed (0)
Back to top