Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for nativeOs (0.09 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

            super(config, andx);
        }
    
        /**
         * Returns the native LAN Manager string reported by the server.
         *
         * @return the nativeLanMan
         */
        public final String getNativeLanMan() {
            return this.nativeLanMan;
        }
    
        /**
         * Returns the native operating system string reported by the server.
         *
         * @return the nativeOs
         */
        public final String getNativeOs() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComSessionSetupAndXResponse.java

            if (extendedSecurity) {
                System.arraycopy(buffer, bufferIndex, blob, 0, blob.length);
                bufferIndex += blob.length;
            }
            nativeOs = readString(buffer, bufferIndex);
            bufferIndex += stringWireLength(nativeOs, bufferIndex);
            nativeLanMan = readString(buffer, bufferIndex, start + byteCount, 255, useUnicode);
            bufferIndex += stringWireLength(nativeLanMan, bufferIndex);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/context/SingletonContextTest.java

            Files.writeString(jcifsPropertiesPath, "jcifs.smb.client.nativeOs=FileOS");
            System.setProperty("jcifs.properties", jcifsPropertiesPath.toString());
    
            System.setProperty("jcifs.smb.client.nativeOs", "SystemOS");
    
            Properties customProps = new Properties();
            customProps.setProperty("jcifs.smb.client.nativeOs", "CustomOS");
    
            SingletonContext.init(customProps);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

            }
    
            value = props.getProperty("jcifs.native.os");
            if (value != null) {
                this.nativeOs = value;
            }
    
            // Also support the alternative property name used in tests
            value = props.getProperty("jcifs.smb.client.nativeOs");
            if (value != null) {
                this.nativeOs = value;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        /** Buffer size for SMB notification operations */
        protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE;
        /** Native operating system name to report */
        protected String nativeOs;
        /** Native LAN Manager string to report */
        protected String nativeLanMan = "jCIFS";
        /** Virtual circuit number for SMB sessions */
        protected int vcNumber = 1;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Connection timeout in milliseconds */
        int CONN_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.connTimeout", DEFAULT_CONN_TIMEOUT);
        /** Native operating system name */
        String NATIVE_OS = Config.getProperty("jcifs.smb1.smb.client.nativeOs", System.getProperty("os.name"));
        /** Native LAN manager name */
        String NATIVE_LANMAN = Config.getProperty("jcifs.smb1.smb.client.nativeLanMan", "jCIFS");
        /** Virtual circuit number */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/config/BaseConfigurationTest.java

        }
    
        @Test
        @DisplayName("Test initDefaults with pre-set native OS")
        void testInitDefaultsWithPresetNativeOs() throws CIFSException {
            BaseConfiguration testConfig = new BaseConfiguration(false);
            testConfig.nativeOs = "CustomOS";
    
            testConfig.initDefaults();
    
            assertEquals("CustomOS", testConfig.getNativeOs());
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         *
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching();
    
        /**
         *
         * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name})
         *
         * @return OS string to report
         */
        String getNativeOs();
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/lib/jline-native/README.txt

    This directory contains JLine native libraries extracted from JLine JAR.
    
    You can add your own build for platforms not natively supported by JLine.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow JLine's directory and filename conventions.
    
    [1] https://github.com/jline/jline3/tree/master/native
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Oct 24 12:01:35 UTC 2024
    - 428 bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.native.js

    cpovirk <******@****.***> 1685135561 -0700
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri May 26 21:15:08 UTC 2023
    - 73 bytes
    - Viewed (0)
Back to top