Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 56 for involves (0.32 seconds)

  1. docs/en/docs/deployment/index.md

    ## What Does Deployment Mean { #what-does-deployment-mean }
    
    To **deploy** an application means to perform the necessary steps to make it **available to the users**.
    
    For a **web API**, it normally involves putting it in a **remote machine**, with a **server program** that provides good performance, stability, etc, so that your **users** can **access** the application efficiently and without interruptions or problems.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Nov 17 19:33:53 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  2. internal/s3select/sql/analysis.go

    package sql
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    )
    
    // Query analysis - The query is analyzed to determine if it involves
    // aggregation.
    //
    // Aggregation functions - An expression that involves aggregation of
    // rows in some manner. Requires all input rows to be processed,
    // before a result is returned.
    //
    // Row function - An expression that depends on a value in the
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java

         * This method is specifically used to locate POM files for subprojects or related
         * projects referenced from the current POM.
         *
         * <p>The resolution process typically involves:</p>
         * <ul>
         *   <li>Normalizing the relative path for the current platform</li>
         *   <li>Resolving the path against the current POM's location</li>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/cors.md

    ## Wildcards { #wildcards }
    
    It's also possible to declare the list as `"*"` (a "wildcard") to say that all are allowed.
    
    But that will only allow certain types of communication, excluding everything that involves credentials: Cookies, Authorization headers like those used with Bearer Tokens, etc.
    
    So, for everything to work correctly, it's better to specify explicitly the allowed origins.
    
    ## Use `CORSMiddleware` { #use-corsmiddleware }
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

     * characters to their Alphabet equivalents, handling both single and double Katakana character combinations.
     * </p>
     *
     * <p>
     * The conversion process involves iterating through the input string, identifying Katakana characters,
     * and replacing them with their corresponding Alphabet representations based on the internal mapping.
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 17 14:28:21 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  6. docs/en/docs/advanced/events.md

    ///
    
    /// tip
    
    Notice that in this case we are using a standard Python `open()` function that interacts with a file.
    
    So, it involves I/O (input/output), that requires "waiting" for things to be written to disk.
    
    But `open()` doesn't use `async` and `await`.
    
    So, we declare the event handler function with standard `def` instead of `async def`.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  7. internal/s3select/sql/statement.go

    			if err != nil {
    				return nil, err
    			}
    		}
    		return []*Record{&input}, nil
    	}
    	return nil, errDataSource(errors.New("unexpected non JSON input"))
    }
    
    // IsAggregated returns if the statement involves SQL aggregation
    func (e *SelectStatement) IsAggregated() bool {
    	return e.selectQProp.isAggregation
    }
    
    // AggregateResult - returns the aggregated result after all input
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 9K bytes
    - Click Count (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

     * UrlFilter, RuleManager, CrawlerContainer, IntervalController, and CrawlerClientFactory,
     * to perform its tasks.
     *
     * <p>The crawling process involves the following steps:
     * <ol>
     *   <li>Initialization: Sets up the crawler context and initializes the URL filter.</li>
     *   <li>Thread Creation: Creates a group of crawler threads to perform the actual crawling.</li>
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 17K bytes
    - Click Count (0)
  9. tensorflow/c/c_api_experimental.cc

      // scheduled on that same threadpool, causing a deadlock in cases where the
      // caller of event_mgr->ThenExecute() blocks on the completion of the callback
      // (as in the case of ConstOp kernel creation on GPU, which involves copying a
      // CPU tensor to GPU).
      // Setting a larger thread pool does not help with the Swift caller, as we use
      // a different TFE context for each thread of execution (for running graph
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 29.4K bytes
    - Click Count (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

     * and components from the Fess Crawler framework, such as {@link CrawlerContainer},
     * {@link UrlConvertHelper}, and {@link EncodingHelper}.
     * </p>
     * <p>
     * The transformation process involves:
     * </p>
     * <ol>
     *   <li>Determining the character set encoding of the HTML content.</li>
     *   <li>Storing the HTML content as data in the {@link ResultData}.</li>
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Nov 29 07:42:33 GMT 2025
    - 30.5K bytes
    - Click Count (0)
Back to Top