Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 804 for curinga (0.05 seconds)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                        }
                    }
    
                    // Emergency cleanup of trees
                    if (this.trees != null) {
                        try {
                            // Clear all tree references
                            for (SmbTreeImpl tree : this.trees) {
                                try {
                                    // Force release trees during emergency cleanup
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 68.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

         * @return the serialized object as a byte array
         * @throws IllegalArgumentException if an unsupported serializer type is configured
         * @throws IORuntimeException if an I/O error occurs during serialization
         */
        public byte[] fromObjectToBinary(final Object obj) {
            final String serializer = getSerializerType();
            return switch (serializer) {
            case KRYO -> serializeWithKryo(obj);
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Wed Nov 19 07:09:17 GMT 2025
    - 6.5K bytes
    - Click Count (3)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java

    /**
     * Represents the contract for Mojos to interact with the Maven infrastructure.
     * Implementations of this interface define specific build-process behaviors
     * that are triggered during a Maven build lifecycle.
     *
     * The primary entry point is the {@link #execute()} method, which encapsulates
     * the behavior of the Mojo and serves as the integration point with Maven. This
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jan 29 08:21:00 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

    import org.codelibs.fess.mylasta.action.FessMessages;
    import org.lastaflute.web.validation.VaMessenger;
    
    /**
     * Exception thrown during SSO (Single Sign-On) processing with message code support.
     *
     * This exception is used to indicate errors that occur during SSO authentication
     * and authorization processes. It carries both a message code for internationalization
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/SamrAliasHandle.java

         * @param domainHandle the domain handle containing this alias
         * @param access the desired access rights
         * @param rid the relative identifier of the alias
         * @throws IOException if an I/O error occurs during handle creation
         */
        public SamrAliasHandle(final DcerpcHandle handle, final SamrDomainHandle domainHandle, final int access, final int rid)
                throws IOException {
            this.handle = handle;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

         * @throws IOException if an I/O error occurs during transmission
         */
        protected abstract void doSendFragment(byte[] buf, int off, int length) throws IOException;
    
        /**
         * Receives a DCERPC fragment from the remote endpoint
         * @param buf the buffer to receive the fragment data
         * @return the number of bytes received
         * @throws IOException if an I/O error occurs during reception
         */
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  7. internal/logger/logger.go

    	return hex.EncodeToString(hh.Sum(nil))
    }
    
    // LogAlwaysIf prints a detailed error message during
    // the execution of the server.
    func LogAlwaysIf(ctx context.Context, subsystem string, err error, errKind ...any) {
    	if err == nil {
    		return
    	}
    	logIf(ctx, subsystem, err, errKind...)
    }
    
    // LogIf prints a detailed error message during
    // the execution of the server, if it is not an
    // ignored error.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 12.4K bytes
    - Click Count (0)
  8. ci/official/requirements_updater/README.md

    specifics of a local system, we rely on hermetic Python (see
    [rules_python](https://github.com/bazelbuild/rules_python)) for all build
    and test commands executed via Bazel. This means that your system Python
    installation will be ignored during the build and Python interpreter itself
    as well as all the Python dependencies will be managed by bazel directly.
    
    ### Specifying Python version
    
    The hermetic Python version is controlled by `HERMETIC_PYTHON_VERSION`
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Jun 29 00:19:18 GMT 2024
    - 3K bytes
    - Click Count (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
     * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
     * the problem.
     *
     */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Aug 07 14:31:13 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

         * @return the redirect URL if a redirect occurred, null otherwise
         * @throws ChildUrlsException if child URLs are discovered during processing
         * @throws DataStoreCrawlingException if an error occurs during crawling
         */
        protected String processRequest(final DataStoreParams paramMap, final Map<String, Object> dataMap, final String url,
                final CrawlerClient client) {
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 29.7K bytes
    - Click Count (3)
Back to Top