Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 638 for performans (0.06 seconds)

  1. docs/ru/llm-prompt.md

    * tip: совет (or `подсказка` depending on context)
    * Pydantic model: Pydantic-модель (`модель Pydantic` and `Pydantic модель` are also fine)
    * declare: объявить
    * have the next best performance, after: быть на следующем месте по производительности после
    * timing attack: тайминговая атака (clarify `атака по времени` if needed)
    * OAuth2 scope: OAuth2 scope (clarify `область` if needed)
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Oct 06 11:09:58 GMT 2025
    - 6K bytes
    - Click Count (0)
  2. cmd/callhome.go

    	if !globalCallhomeConfig.Enabled() {
    		return
    	}
    
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Leader node (that successfully acquires the lock inside runCallhome)
    		// will keep performing the callhome. If the leader goes down for some reason,
    		// the lock will be released and another node will acquire it and take over
    		// because of this loop.
    		for {
    			if !globalCallhomeConfig.Enabled() {
    				return
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/help/HelpAction.java

        //                                                                      ==============
    
        /**
         * Handles the help page request and renders the help interface.
         * This method performs authentication checks and sets up the necessary
         * form parameters and rendering data for the help page display.
         *
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  4. guava-testlib/src/com/google/common/testing/TearDown.java

    /**
     * An object that can perform a {@link #tearDown} operation.
     *
     * @author Kevin Bourrillion
     * @since 10.0
     */
    @FunctionalInterface
    @GwtCompatible
    @NullMarked
    public interface TearDown {
      /**
       * Performs a <b>single</b> tear-down operation. See test-libraries-for-java's {@code
       * com.google.common.testing.junit3.TearDownTestCase} and {@code
       * com.google.common.testing.junit4.TearDownTestCase} for example.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  5. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    fun computeExternalDependenciesNotAccessibleFromProjectDependencies(
        rootComponent: ResolvedComponentResult,
        rootVariant: ResolvedVariantResult
    ): Set<ComponentIdentifier> {
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri May 16 18:26:52 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        //                                                                              Method
        //                                                                      ==============
    
        /**
         * Performs a search operation and populates the search render data with results.
         *
         * This method handles the complete search workflow including parameter processing,
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java

     *
     * <h3>All-in-One Option</h3>
     * The {@code --all} option is a convenience flag equivalent to {@code --model 4.1.0 --infer --fix-model --plugins}.
     * It performs a complete upgrade to Maven 4.1.0 with all optimizations, compatibility fixes, and plugin upgrades.
     *
     * <h3>Maven 4 Compatibility Fixes</h3>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

         * @param responseType The type of SSO response required.
         * @return The action response.
         */
        ActionResponse getResponse(SsoResponseType responseType);
    
        /**
         * Performs logout for the specified user.
         * @param user The user to logout.
         * @return The logout URL or null if not applicable.
         */
        String logout(FessUserBean user);
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (1)
  9. RELEASE.md

            replicas taking part in sync training.
        *   Performance improvements for GPU multi-worker distributed training using
            `tf.distribute.experimental.MultiWorkerMirroredStrategy`
        *   Update NVIDIA `NCCL` to `2.5.7-1` for better performance and performance
            tuning. Please see
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Tue Oct 28 22:27:41 GMT 2025
    - 740.4K bytes
    - Click Count (3)
  10. impl/maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurator.java

     * have a public setter or be backed by an equally named field (of any visibility).
     *
     * @since 3.0
     */
    public interface BeanConfigurator {
    
        /**
         * Performs the specified bean configuration.
         *
         * @param request The configuration request that specifies the bean and the configuration to process, must not be
         *            {@code null}.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.7K bytes
    - Click Count (0)
Back to Top