Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,490 for eravate (0.16 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/DerivedGoogleCollectionGenerators.java

        }
      }
    
      public static class BiMapValueSetGenerator<K extends @Nullable Object, V extends @Nullable Object>
          implements TestSetGenerator<V>, DerivedGenerator {
        private final OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> mapGenerator;
        private final SampleElements<V> samples;
    
        public BiMapValueSetGenerator(
            OneSizeTestContainerGenerator<BiMap<K, V>, Entry<K, V>> mapGenerator) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.8K bytes
    - Viewed (2)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

     */
    public abstract class ServerMessageBlock2Response extends ServerMessageBlock2 implements CommonServerMessageBlockResponse {
    
        private boolean received;
        private boolean error;
        private Long expiration;
    
        private boolean verifyFailed;
        private Exception exception;
        private boolean asyncHandled;
    
        /**
         * Constructor for SMB2 response with configuration and command.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java

        /**
         * Flag to reopen the directory enumeration.
         */
        public static final byte SMB2_REOPEN = 0x10;
    
        private byte fileInformationClass = FILE_BOTH_DIRECTORY_INFO;
        private byte queryFlags;
        private int fileIndex;
        private byte[] fileId;
        private final int outputBufferLength;
        private String fileName;
    
        /**
         * Constructs an SMB2 query directory request with the given configuration.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmServlet.java

        }
    
        /** The default domain for NTLM authentication */
        private String defaultDomain;
    
        /** The domain controller for authentication */
        private String domainController;
    
        /** Flag to enable load balancing across domain controllers */
        private boolean loadBalance;
    
        /** Flag to enable basic authentication */
        private boolean enableBasic;
    
        /** Flag to allow insecure basic authentication */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/text/Tokenizer.java

        private static final int TT_NOTHING = -4;
    
        private static final int NEED_CHAR = Integer.MAX_VALUE;
    
        private static final int QUOTE = '\'';
    
        private static final byte CT_WHITESPACE = 1;
    
        private static final byte CT_ALPHA = 4;
    
        private final byte[] ctype;
    
        private static byte[] defaultCtype = new byte[256];
    
        private final String str;
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/repository/DefaultArtifactRepositoryFactory.java

    /**
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultArtifactRepositoryFactory implements ArtifactRepositoryFactory {
        // TODO use settings?
        private String globalUpdatePolicy;
    
        private String globalChecksumPolicy;
    
        @Inject
        private Map<String, ArtifactRepositoryLayout> repositoryLayouts;
    
        @Override
        public ArtifactRepositoryLayout getLayout(String layoutId) throws UnknownRepositoryLayoutException {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  7. docs/smb3-features/03-multi-channel-design.md

    import java.util.List;
    
    public class NetworkInterfaceInfo {
        private int interfaceIndex;
        private int capability;
        private int linkSpeed;  // In units of 1 Mbps
        private byte[] sockaddrStorage;  // Socket address
        private InetAddress address;
        private boolean ipv6;
        private boolean rssCapable;  // Receive Side Scaling
        private boolean rdmaCapable;
        
        // Capability flags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/SourceSinkFactories.java

        }
    
        @Override
        public byte[] getExpected(byte[] bytes) {
          return checkNotNull(bytes);
        }
      }
    
      private static class FileByteSinkFactory extends FileFactory implements ByteSinkFactory {
    
        private final byte[] initialBytes;
    
        private FileByteSinkFactory(byte @Nullable [] initialBytes) {
          this.initialBytes = initialBytes;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java

     * @author higa
     *
     */
    public class PropertyNotFoundRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5177019197796206774L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the property.
         */
        private final String propertyName;
    
        /**
         * Returns a {@link PropertyNotFoundRuntimeException}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

        }
    
        class Builder {
            private final String command;
            private final String commandName;
            private final List<String> args;
            private final MessageBuilderFactory messageBuilderFactory;
    
            private final Logger logger;
            private Lookup lookup = EMPTY_LOOKUP;
            private Path cwd;
            private Path mavenHome;
            private Path userHome;
            private InputStream stdIn;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top