Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for cfg (0.01 sec)

  1. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java

        private Smb2SessionSetupResponse newResponse() {
            // Configuration is not used during decode when no signing digest is set
            Configuration cfg = mock(Configuration.class);
            return new Smb2SessionSetupResponse(cfg);
        }
    
        /**
         * Build a minimal SMB2 header for a response at the given offset.
         * The header is prepared as a synchronous response with server-to-redirector flag.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. docs/sts/.gitignore

    *$py.class
    
    # C extensions
    *.so
    
    # Distribution / packaging
    .Python
    build/
    develop-eggs/
    dist/
    downloads/
    eggs/
    .eggs/
    lib/
    lib64/
    parts/
    sdist/
    var/
    wheels/
    *.egg-info/
    .installed.cfg
    *.egg
    MANIFEST
    
    # PyInstaller
    #  Usually these files are written by a python script from a template
    #  before PyInstaller builds the exe, so as to inject date/other infos into it.
    *.manifest
    *.spec
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                }
            } else {
                throw new SmbException("Unsupported");
            }
        }
    
        @Override
        protected int getBatchLimit(final Configuration cfg, final byte cmd) {
            return cmd == SMB_COM_TREE_CONNECT_ANDX ? cfg.getBatchLimit("SessionSetupAndX.TreeConnectAndX") : 0;
        }
    
        @Override
        protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java

            assertEquals(AvPair.MsvAvSingleHost, avSingleHost.getType());
            assertArrayEquals(rawData, avSingleHost.getRaw());
        }
    
        /**
         * Test constructor AvSingleHost(Configuration cfg).
         * Should use the machine ID from the configuration.
         */
        @Test
        void testAvSingleHostConfigurationConstructor() {
            Configuration mockConfig = mock(Configuration.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/mime.map

    image/x-xwindowdump            xwd              #
    text/css                       css              # Cascading Style Sheet
    text/html                      html htm         # HTML Document
    text/plain                     txt ini log in cfg m4 sh     # Plain Text File
    text/richtext                  rtx              # Rich Text File
    text/tab-separated-values      tsv              #
    text/x-setext                  etx              #
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

            return this.andx;
        }
    
        /**
         * Gets the batch limit for chained commands
         * @param cfg the configuration
         * @param cmd the command byte
         * @return the batch limit
         */
        protected int getBatchLimit(final Configuration cfg, final byte cmd) {
            /*
             * the default limit is 0 batched messages before this
             * one, meaning this message cannot be batched.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		return &madmin.BucketTargets{}
    	}
    	cfg, err := getReplicationConfig(ctx, bucket)
    	if err != nil || cfg == nil {
    		replLogOnceIf(ctx, err, bucket)
    
    		return &madmin.BucketTargets{}
    	}
    	topts := replication.ObjectOpts{Name: object}
    	tgtArns := cfg.FilterTargetArns(topts)
    	tgts = &madmin.BucketTargets{Targets: make([]madmin.BucketTarget, len(tgtArns))}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

            // Override getBatchLimit to allow batching
            testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25, andxBlock) {
                @Override
                protected int getBatchLimit(Configuration cfg, byte cmd) {
                    return 1; // Allow one batched message
                }
            };
    
            byte[] buffer = new byte[1024];
            int length = testBlock.encode(buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

        private int selectedPreauthHash = -1;
    
        /**
         * Constructs an SMB2 negotiate response with the given configuration.
         *
         * @param cfg the configuration for this response
         */
        public Smb2NegotiateResponse(final Configuration cfg) {
            super(cfg);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#getInitialCredits()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbRandomAccessFileTest.java

            SmbFile file = mock(SmbFile.class);
            SmbTreeHandleImpl tree = mock(SmbTreeHandleImpl.class);
            Configuration cfg = mock(Configuration.class);
            SmbFileHandleImpl fh = mock(SmbFileHandleImpl.class);
    
            when(file.ensureTreeConnected()).thenReturn(tree);
            when(tree.getConfig()).thenReturn(cfg);
            when(tree.getReceiveBufferSize()).thenReturn(1024);
            when(tree.getSendBufferSize()).thenReturn(1024);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top