Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 405 for associate (0.05 sec)

  1. src/main/java/org/codelibs/fess/query/QueryCommand.java

         * @return The query class name.
         */
        protected abstract String getQueryClassName();
    
        /**
         * Registers this query command with the query processor.
         * Associates this command with its query class name in the processor.
         */
        public void register() {
            ComponentUtil.getQueryProcessor().add(getQueryClassName(), this);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/rpc.java

                // Default constructor
            }
    
            /**
             * The type of the policy handle.
             */
            public int type;
            /**
             * The UUID associated with this policy handle.
             */
            public uuid_t uuid;
    
            @Override
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMap.java

                    ImmutableCollection.Builder.expandedCapacity(
                        alternatingKeysAndValues.length, minCapacity * 2));
            entriesUsed = false;
          }
        }
    
        /**
         * Associates {@code key} with {@code value} in the built map. If the same key is put more than
         * once, {@link #buildOrThrow} will fail, while {@link #buildKeepingLast} will keep the last
         * value put for that key.
         */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

        /**
         * @return the {@link LockGraphNode} associated with this lock.
         */
        LockGraphNode getLockGraphNode();
    
        /**
         * @return {@code true} if the current thread has acquired this lock.
         */
        boolean isAcquiredByCurrentThread();
      }
    
      /**
       * A {@code LockGraphNode} associated with each lock instance keeps track of the directed edges in
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Monitor.java

       * {@code Monitor}. The monitor may check the guard at arbitrary times from any thread occupying
       * the monitor, so code should not be written to rely on how often a guard might or might not be
       * checked.
       *
       * <p>If a {@code Guard} is passed into any method of a {@code Monitor} other than the one it is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            }
            return task;
        }
    
        /**
         * Generates a thumbnail image and saves it to the specified output file.
         *
         * <p>This method processes the image content associated with the thumbnail ID,
         * validates the image format, applies scaling and cropping transformations,
         * and writes the resulting thumbnail to the output file.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            }
            this.ansiHash = ansiHash;
            this.unicodeHash = unicodeHash;
            this.hashesExternal = true;
        }
    
        /**
         * Get the CIFS context associated with this authentication.
         *
         * @return the CIFS context
         */
        protected CIFSContext getContext() {
            return this.context;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        /** The port number for the file authentication connection. */
        public String port;
    
        /** The username for file authentication. */
        public String username;
    
        /** The file configuration ID associated with this authentication. */
        public String fileConfigId;
    
        /** The user who created this file authentication entry. */
        public String createdBy;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbException.java

            super(winerr ? getMessageByWinerrCode(errcode) : getMessageByCode(errcode));
            this.status = winerr ? errcode : getStatusByCode(errcode);
        }
    
        /**
         * Get the NT STATUS code associated with this exception
         *
         * @return status code
         */
        public int getNtStatus() {
            return this.status;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_it.properties

    errors.design_editor_disabled = Questa funzione è disabilitata.
    errors.not_found_on_file_system = Non trovato. Causa: {0}
    errors.could_not_open_on_system = Impossibile aprire {0}.<br>Verifica che il file sia associato a un'applicazione.
    errors.result_size_exceeded = Non è possibile visualizzare altri risultati.
    errors.target_file_does_not_exist = Il file {0} non esiste.
    errors.failed_to_delete_file = Impossibile eliminare il file {0}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top