Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for 300 (0.69 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponseTest.java

            int bufferIndex = 0;
    
            // Set up negative values
            int namedPipeState = -1;
            int readDataAvailable = -100;
            int numberOfMessages = -200;
            int messageLength = -300;
    
            // Write values to buffer
            SMBUtil.writeInt4(namedPipeState, buffer, bufferIndex);
            SMBUtil.writeInt4(readDataAvailable, buffer, bufferIndex + 4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrParseInvalidContextForWildcardInSelectList-296]
    	_ = x[ErrIncorrectSQLFunctionArgumentType-297]
    	_ = x[ErrValueParseFailure-298]
    	_ = x[ErrEvaluatorInvalidArguments-299]
    	_ = x[ErrIntegerOverflow-300]
    	_ = x[ErrLikeInvalidInputs-301]
    	_ = x[ErrCastFailed-302]
    	_ = x[ErrInvalidCast-303]
    	_ = x[ErrEvaluatorInvalidTimestampFormatPattern-304]
    	_ = x[ErrEvaluatorInvalidTimestampFormatPatternSymbolForParsing-305]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/SmbCircuitBreakerTest.java

                    } catch (InterruptedException e) {}
                    return "medium";
                });
    
                cbWithMetrics.executeWithCircuitBreaker(() -> {
                    try {
                        Thread.sleep(300);
                    } catch (InterruptedException e) {}
                    return "slow";
                });
    
                // Check metrics
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Dfs.java

        static LogStream log = LogStream.getInstance();
        static final boolean strictView = Config.getBoolean("jcifs.smb1.smb.client.dfs.strictView", false);
        static final long TTL = Config.getLong("jcifs.smb1.smb.client.dfs.ttl", 300);
        static final boolean DISABLED = Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false);
    
        /**
         * Sentinel cache entry indicating a negative cache result
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/util/PathValidatorTest.java

            });
        }
    
        @Test
        public void testComponentTooLong() throws Exception {
            StringBuilder longComponent = new StringBuilder("\\share\\");
            for (int i = 0; i < 300; i++) {
                longComponent.append('a');
            }
            assertThrows(SmbException.class, () -> {
                validator.validatePath(longComponent.toString());
            });
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  6. docs/config/README.md

    ```
    
    Example: the following setting will decrease the scanner speed by a factor of 3, reducing the system resource use, but increasing the latency of updates being reflected.
    
    ```sh
    ~ mc admin config set alias/ scanner delay=30.0
    ```
    
    Once set the scanner settings are automatically applied without the need for server restarts.
    
    ### Healing
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.1K bytes
    - Viewed (1)
  7. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

                bb.putShort((short) 34); // size
                bb.putShort((short) 1); // serverType
                bb.putShort((short) 2); // rflags
                bb.putShort((short) 10); // proximity
                bb.putShort((short) 300); // ttl
                bb.putShort((short) 20); // pathOffset
                bb.putShort((short) 24); // altPathOffset
                bb.putShort((short) 28); // nodeOffset
    
                // Add path string at offset 20 (8 + 20 = 28)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java

        }
    
        /**
         * Creates a basic negotiate response buffer with minimum valid structure.
         */
        private byte[] createBasicNegotiateResponseBuffer() {
            byte[] buffer = new byte[300]; // Sufficient size for basic structure + offsets
    
            // Structure size (65)
            SMBUtil.writeInt2(65, buffer, 0);
    
            // Security mode
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. docs/pl/docs/index.md

    * **Szybkość kodowania**: Przyśpiesza szybkość pisania nowych funkcjonalności o około 200% do 300%. *
    * **Mniejsza ilość błędów**: Zmniejsza ilość ludzkich (dewelopera) błędy o około 40%. *
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java

            setHeaderStart(response, 64);
    
            // Write structure header
            SMBUtil.writeInt2(9, buffer, offset);
            SMBUtil.writeInt2(80 - 64, buffer, offset + 2);
            SMBUtil.writeInt4(300, buffer, offset + 4);
    
            // First notification with unaligned filename length
            int notifyOffset = 80;
            SMBUtil.writeInt4(28, buffer, notifyOffset); // NextEntryOffset (aligned)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top