Search Options

Results per page
Sort
Preferred Languages
Advance

Results 441 - 450 of 904 for contigo (2.64 sec)

  1. src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java

            public TestAndXServerMessageBlock(Configuration config, byte command, ServerMessageBlock andx) {
                super(config, command, andx);
            }
    
            public TestAndXServerMessageBlock(Configuration config, byte command) {
                super(config, command);
            }
    
            public TestAndXServerMessageBlock(Configuration config) {
                super(config);
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/DfsTest.java

            smbTransportMockedStatic = mockStatic(SmbTransport.class);
    
            configMockedStatic = mockStatic(Config.class);
            lenient().when(Config.getBoolean("jcifs.smb1.smb.client.dfs.strictView", false)).thenReturn(false);
            lenient().when(Config.getLong("jcifs.smb1.smb.client.dfs.ttl", 300)).thenReturn(300L);
            lenient().when(Config.getBoolean("jcifs.smb1.smb.client.dfs.disabled", false)).thenReturn(false);
        }
    
        @AfterEach
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java

     * @author mbechler
     */
    public class Smb2EchoResponse extends ServerMessageBlock2Response {
    
        /**
         * Constructs an SMB2 echo response
         * @param config the client configuration
         */
        public Smb2EchoResponse(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
    - 2.1K bytes
    - Viewed (0)
  4. ci/official/libtensorflow.sh

    fi
    
    if [[ $(uname -s) != MSYS_NT* ]]; then
      tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS test $TFCI_BAZEL_COMMON_ARGS --config=linux_libtensorflow_test
      tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS build $TFCI_BAZEL_COMMON_ARGS --config=linux_libtensorflow_build
    else
      tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS build $TFCI_BAZEL_COMMON_ARGS --config=windows_libtensorflow_build
    fi
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Jan 24 20:17:08 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. docs/site-replication/run-multi-site-ldap.sh

    		chmod +x mc
    fi
    
    minio server --config-dir /tmp/minio-ldap --address ":9001" /tmp/minio-ldap-idp1/{1...4} >/tmp/minio1_1.log 2>&1 &
    site1_pid=$!
    minio server --config-dir /tmp/minio-ldap --address ":9002" /tmp/minio-ldap-idp2/{1...4} >/tmp/minio2_1.log 2>&1 &
    site2_pid=$!
    minio server --config-dir /tmp/minio-ldap --address ":9003" /tmp/minio-ldap-idp3/{1...4} >/tmp/minio3_1.log 2>&1 &
    site3_pid=$!
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Sep 24 08:03:58 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ThumbnailQueueDbm.java

            return "org.codelibs.fess.opensearch.config.exentity.ThumbnailQueue";
        }
    
        @Override
        public String getConditionBeanTypeName() {
            return "org.codelibs.fess.opensearch.config.cbean.ThumbnailQueueCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.config.exbhv.ThumbnailQueueBhv";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.13.md

       * -viper-config can be used to set also the options defined by command line flags
       * the default config file is "e2e.yaml/toml/json/..." and the test starts when no such config is found (as before) but if -viper-config is used, the config file must exist
       * -viper-config can be used to select a file with full path, with or without file suffix
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exbhv/ScheduledJobBhv.java

     */
    package org.codelibs.fess.opensearch.config.exbhv;
    
    import java.util.regex.Pattern;
    
    import org.apache.commons.lang3.RandomUtils;
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.opensearch.config.bsbhv.BsScheduledJobBhv;
    import org.codelibs.fess.opensearch.config.exentity.ScheduledJob;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/session/Smb2LogoffResponse.java

        /**
         * Constructs an SMB2 logoff response with the given configuration.
         *
         * @param config the configuration for this response
         */
        public Smb2LogoffResponse(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
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSetInformationResponse.java

     */
    public class SmbComSetInformationResponse extends ServerMessageBlock {
    
        /**
         * Constructs a set information response.
         *
         * @param config the configuration to use
         */
        public SmbComSetInformationResponse(final Configuration config) {
            super(config);
        }
    
        @Override
        protected int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) {
            return 0;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top