Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,094 for configurator (0.14 sec)

  1. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

        /** Configuration key for login client module name. */
        protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module";
    
        /** Configuration key for Kerberos configuration file path. */
        protected static final String SPNEGO_KRB5_CONF = "spnego.krb5.conf";
    
        /** Configuration key for login configuration file path. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. cmd/config.go

    }
    
    // Initialize and load config from remote etcd or local config directory
    func initConfig(objAPI ObjectLayer) (err error) {
    	bootstrapTraceMsg("load the configuration")
    	defer func() {
    		if err != nil {
    			bootstrapTraceMsg(fmt.Sprintf("loading configuration failed: %v", err))
    		}
    	}()
    
    	if objAPI == nil {
    		return errServerNotInitialized
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java

        private int fileSize = 0;
    
        /**
         * Constructs a query information response.
         *
         * @param config the configuration
         * @param serverTimeZoneOffset the server time zone offset
         */
        public SmbComQueryInformationResponse(final Configuration config, final long serverTimeZoneOffset) {
            super(config, SMB_COM_QUERY_INFORMATION);
            this.serverTimeZoneOffset = serverTimeZoneOffset;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/net/NetShareEnum.java

        private static final String DESCR = "WrLeh\u0000B13BWz\u0000";
    
        /**
         * Constructs a NetShareEnum request
         * @param config
         *            the configuration to use
         */
        public NetShareEnum(final Configuration config) {
            super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM);
            this.name = "\\PIPE\\LANMAN";
            this.maxParameterCount = 8;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java

        /**
         * Constructs an NT transaction to query security descriptor information.
         * @param config the configuration context
         * @param fid the file identifier to query
         * @param securityInformation bitmask specifying which security information to retrieve
         */
        public NtTransQuerySecurityDesc(final Configuration config, final int fid, final int securityInformation) {
            super(config, NT_TRANSACT_QUERY_SECURITY_DESC);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java

        /**
         * Constructs a change notify response
         *
         * @param config
         *            The configuration to use
         */
        public Smb2ChangeNotifyResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/com/SmbComSetInformationResponseTest.java

    @DisplayName("SmbComSetInformationResponse tests")
    public class SmbComSetInformationResponseTest {
    
        @Mock
        private Configuration mockConfig;
    
        private SmbComSetInformationResponse response;
    
        @BeforeEach
        void setUp() {
            // Setup mock configuration to avoid NPE
            when(mockConfig.getPid()).thenReturn(12345);
    
            response = new SmbComSetInformationResponse(mockConfig);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

        /**
         * Constructs a Trans2SetFileInformation request with file information object.
         *
         * @param config the SMB configuration
         * @param fid the file identifier
         * @param info the file information to set
         */
        public Trans2SetFileInformation(final Configuration config, final int fid, final FileInformation info) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_SET_FILE_INFORMATION);
            this.fid = fid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

        /**
         * Constructs an empty write AndX request.
         *
         * @param config the configuration to use
         */
        public SmbComWriteAndX(final Configuration config) {
            super(config, SMB_COM_WRITE_ANDX, null);
        }
    
        /**
         * Constructs a write AndX request to write data to a file.
         *
         * @param config the configuration to use
         * @param fid the file identifier
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/CIFSContext.java

         * @throws CIFSException if an error occurs during cleanup
         */
        boolean close() throws CIFSException;
    
        /**
         * Get the configuration object for this context
         *
         * @return the active configuration
         */
        Configuration getConfig();
    
        /**
         * Get the name service client for NetBIOS name resolution
         *
         * @return the name server client
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top