Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 252 for 0600 (0.04 sec)

  1. src/main/webapp/css/admin/adminlte.min.css.map

     appearance: none;\n}\n\n.custom-range:focus {\n  outline: 0;\n}\n\n.custom-range:focus::-webkit-slider-thumb {\n  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-moz-range-thumb {\n  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range:focus::-ms-thumb {\n  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);\n}\n\n.custom-range::-moz-focus-outer {\n  border: 0;\n}\n\n.custom-range::-webkit-slider-thumb {\n...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
  2. android/guava-tests/test/com/google/common/base/JoinerTest.java

        checkResult(zeroForNull, iterableNull1, "0-1");
        checkResult(zeroForNull, iterable1Null, "1-0");
        checkResult(zeroForNull, iterable1Null2, "1-0-2");
        checkResult(zeroForNull, iterableFourNulls, "0-0-0-0");
      }
    
      private static void checkNoOutput(Joiner joiner, Iterable<Integer> set) {
        assertEquals("", joiner.join(set));
        assertEquals("", joiner.join(set.iterator()));
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        }
    
        @Override
        public final boolean readBoolean() throws SmbException {
            if (read(tmp, 0, 1) < 0) {
                throw new SmbException("EOF");
            }
            return tmp[0] != (byte) 0x00;
        }
    
        @Override
        public final byte readByte() throws SmbException {
            if (read(tmp, 0, 1) < 0) {
                throw new SmbException("EOF");
            }
            return tmp[0];
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. src/main/webapp/js/suggestor.js

              if (!isFocusList && started && !suggestingSts) {
                //update if not selecting item in list
                suggestor.suggest();
                interval = 0;
              }
            }
          }
        }, 100);
      };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java

            long value = 999L;
            SMBUtil.writeInt8(value, buffer, 0);
    
            // Decode with extra length - should only read 8 bytes
            int bytesRead = fileInfo.decode(buffer, 0, 100);
    
            assertEquals(8, bytesRead);
            assertTrue(fileInfo.toString().contains("endOfFile=" + value));
        }
    
        @Test
        @DisplayName("Test toString format")
        void testToString() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/netbios/LmhostsTest.java

            File lmhostsFile = tempDir.resolve("lmhosts_ip_components").toFile();
            try (FileWriter writer = new FileWriter(lmhostsFile)) {
                writer.write("0.0.0.0 HOST1\n");
                writer.write("127.0.0.1 HOST2\n");
                writer.write("192.168.255.255 HOST3\n");
                writer.write("10.20.30.40 HOST4\n");
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/behind-a-proxy.md

    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    /// tip
    
    The IP `0.0.0.0` is commonly used to mean that the program listens on all the IPs available in that machine/server.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/PathValidator.java

            if (path == null) {
                return "null";
            }
    
            // Truncate long paths
            if (path.length() > 100) {
                path = path.substring(0, 100) + "...";
            }
    
            // Remove control characters for safe logging
            return path.replaceAll("[\\x00-\\x1F\\x7F]", "?");
        }
    
        /**
         * Get blacklisted paths
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/netbios/NameQueryResponseTest.java

            // Simulate groupName = false, nodeType = 0
            src[srcIndex] = (byte) 0x00;
            src[srcIndex + 1] = (byte) 0x00;
    
            // Simulate address = 0.0.0.0
            src[srcIndex + 2] = (byte) 0x00;
            src[srcIndex + 3] = (byte) 0x00;
            src[srcIndex + 4] = (byte) 0x00;
            src[srcIndex + 5] = (byte) 0x00;
    
            // Set 'addrEntry' and 'addrIndex' fields in superclass
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

                // Test at buffer end
                int result2 = response.decode(buffer, 90, 10);
                assertEquals(10, result2);
    
                // Test full buffer
                int result3 = response.decode(buffer, 0, 100);
                assertEquals(100, result3);
            }
    
            @Test
            @DisplayName("Should handle concurrent decode calls")
            void testConcurrentDecoding() throws SMBProtocolDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top