Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for ACTIVE (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

             * @return true if watching is active
             */
            public boolean isActive() {
                return active;
            }
    
            /**
             * Set active status
             *
             * @param active true to activate
             */
            public void setActive(boolean active) {
                this.active = active;
            }
    
            /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            src[srcIndex + 17] = 0x04; // flags: active
    
            // Second name entry (18 bytes)
            String name2 = "DOMAIN          ";
            System.arraycopy(name2.getBytes("US-ASCII"), 0, src, srcIndex + 19, 16);
            src[srcIndex + 34] = 0x00; // hex code
            src[srcIndex + 35] = (byte) 0x84; // flags: group, active
    
            // Third name entry (18 bytes) - matching queryAddress
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  3. schema/schema_test.go

    		{Name: "ManagerID", DBName: "manager_id", BindNames: []string{"ManagerID"}, DataType: schema.Uint, Size: 64},
    		{Name: "Active", DBName: "active", BindNames: []string{"Active"}, DataType: schema.Bool},
    	}
    
    	for i := range fields {
    		checkSchemaField(t, user, &fields[i], func(f *schema.Field) {
    			f.Creatable = true
    			f.Updatable = true
    			f.Readable = true
    		})
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Aug 28 02:57:17 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            return this;
        }
    
        /**
         * Gets the list of active features.
         *
         * @return A list of active features.
         */
        public List<String> activeFeatures() {
            return activeFeatures;
        }
    
        /**
         * Sets the list of active features.
         *
         * @param activeFeatures A list of active features.
         * @return This query builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbTransportPool.java

         * @throws CIFSException if an error occurs during authentication
         * @deprecated functionality is broken and will be removed at some point,
         *             use actual Active Directory authentication instead
         */
        @Deprecated
        void logon(CIFSContext tc, Address dc) throws CIFSException;
    
        /**
         * Authenticate arbitrary credentials represented by the
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/ResourceManager.java

                    "activeResources", active, "closedResources", closed, "trackedResources", activeResources.size());
        }
    
        /**
         * Get active resource information
         *
         * @return set of active resource descriptions
         */
        public Set<String> getActiveResources() {
            Set<String> result = Collections.newSetFromMap(new ConcurrentHashMap<>());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbTreeHandle.java

    package jcifs;
    
    /**
     * Handle to a connected SMB tree
     *
     * @author mbechler
     *
     */
    public interface SmbTreeHandle extends AutoCloseable {
    
        /**
         * Gets the active configuration for this tree handle
         * @return the active configuration
         */
        Configuration getConfig();
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java

         */
        public int getScore() {
            int score = 100;
    
            // Adjust based on state
            if (state == ChannelState.ACTIVE)
                score -= 20; // Busy channel penalty
            if (state != ChannelState.ESTABLISHED && state != ChannelState.ACTIVE)
                return 0;
    
            // Adjust based on error rate
            double errorRate = getErrorRate();
            if (errorRate > 0.1)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessClient.java

         *
         * @return the witness server address
         */
        public InetAddress getWitnessServer() {
            return witnessServer;
        }
    
        /**
         * Gets the number of active registrations.
         *
         * @return the number of active registrations
         */
        public int getActiveRegistrationCount() {
            return registrations.size();
        }
    
        @Override
        public void close() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

         *
         * @return connection count
         */
        public long getConnectionsCreated() {
            return connectionsCreated.get();
        }
    
        /**
         * Get number of currently active connections
         *
         * @return active connection count
         */
        public long getConnectionsActive() {
            return connectionsActive.get();
        }
    
        /**
         * Get total number of memory regions allocated
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top