Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 323 for ridentifier (4.73 sec)

  1. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         */
        private String newOutput;
    
        /**
         * Constructs a new CharMappingItem with the specified ID, input sequences, and output sequence.
         *
         * @param id the unique identifier for this mapping item
         * @param inputs array of input character sequences that will be mapped to the output
         * @param output the output character sequence that inputs will be mapped to
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

        /**
         * Construct a SID from a domain SID and an RID
         * (relative identifier). For example, a domain SID
         * {@code S-1-5-21-1496946806-2192648263-3843101252} and RID {@code 1029} would
         * yield the SID {@code S-1-5-21-1496946806-2192648263-3843101252-1029}.
         */
        /**
         * Construct a SID from a domain SID and an RID (relative identifier).
         *
         * @param domsid the domain SID
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

         * @see DependencyCoordinates#getOptional()
         */
        boolean isOptional();
    
        /**
         * {@return coordinates with the same identifiers as this dependency}.
         */
        @Nonnull
        @Override
        DependencyCoordinates toCoordinates();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ExtensibleEnumRegistry.java

    import org.apache.maven.api.ExtensibleEnum;
    import org.apache.maven.api.Service;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Registry for extensible enum values that allows looking up enum instances by their identifiers.
     * <p>
     * This service provides access to all registered instances of a specific extensible enum type.
     * It's used internally by Maven and can also be used by plugins and extensions to access
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java

     * This form is used in the admin interface to upload custom user dictionaries for Kuromoji.
     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which Kuromoji dictionary configuration to update.
         * This ID corresponds to a specific Kuromoji dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            this.openTimeout = 0xFFFFFFFF;
        }
    
        /**
         * Constructs a Read AndX request with parameters.
         *
         * @param config the configuration
         * @param fid the file identifier
         * @param offset the file offset to read from
         * @param maxCount the maximum number of bytes to read
         * @param andx the next command in the chain
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/witness/WitnessRegistration.java

            this.contextHandle = new byte[20]; // MS-SWN context handle size
        }
    
        /**
         * Generates a unique registration ID.
         *
         * @return a unique registration identifier
         */
        private String generateRegistrationId() {
            return "REG-" + System.currentTimeMillis() + "-" + Integer.toHexString(System.identityHashCode(this));
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            }).createPageNumberList());
    
            return failureUrlList;
        }
    
        /**
         * Retrieves a specific failure URL by its ID.
         *
         * @param id the unique identifier of the failure URL
         * @return an OptionalEntity containing the FailureUrl if found, empty otherwise
         */
        public OptionalEntity<FailureUrl> getFailureUrl(final String id) {
            return failureUrlBhv.selectByPK(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        }
    
        /**
         * Returns the application type identifier for this Fess application.
         *
         * @return the application type string "FES"
         */
        @Override
        protected String myAppType() { // for framework
            return APP_TYPE;
        }
    
        /**
         * Returns the user type identifier for this application.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/ServerResponseValidator.java

                throw new SmbException("File operation exceeds file bounds");
            }
        }
    
        /**
         * Validate SMB header fields
         *
         * @param protocolId protocol identifier
         * @param structureSize structure size field
         * @param command command code
         * @throws SmbException if header is invalid
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top