Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 246 for deltas (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    
            return webConfigList;
        }
    
        /**
         * Deletes a web configuration and all its related data.
         * This includes removing associated web authentications and request headers.
         *
         * @param webConfig The web configuration to delete
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/security/get-current-user.md

    escrito apenas uma vez, em um único lugar. Com toda a flexibilidade.
    L88:
    L89:Mas você pode ter milhares de endpoints (*operações de rota*) usando o mesmo sistema de segurança.
    L90:
    L91:E todos eles (ou qualquer parte deles que você desejar) podem aproveitar o reuso dessas dependências ou de quaisquer outras dependências que você criar.
    L92:
    L93:E todos esses milhares de *operações de rota* podem ter apenas 3 linhas:
    L94:
    L95:{* ../../docs_src/security/tutorial002_an_py310.py hl[30:32] *}
    ...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Jan 10 13:33:35 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java

                return null;
            });
            return asJson(new ApiUpdateResponse().id(webConfig.getId()).created(false).status(Status.OK).result());
        }
    
        /**
         * Deletes a web configuration setting by ID.
         *
         * @param id the ID of the web configuration setting to delete
         * @return JSON response indicating success or failure
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/BooleansTest.java

        boolean[] VALUES = BooleansTest.VALUES;
        VALUES = Booleans.concat(VALUES, VALUES);
    
        for (int delta : new int[] {+1, 0, -1}) {
          for (int i = 0; i < VALUES.length; i++) {
            List<Boolean> list = Booleans.asList(VALUES).subList(0, i);
            Collection<Boolean> misleadingSize = Helpers.misleadingSizeCollection(delta);
            misleadingSize.addAll(list);
            boolean[] arr = Booleans.toArray(misleadingSize);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

                    file.insert(charMappingItem);
                } else {
                    file.update(charMappingItem);
                }
            });
        }
    
        /**
         * Deletes a character mapping item from the specified dictionary.
         * <p>
         * This method removes the specified character mapping item from the dictionary
         * if the dictionary file exists and is accessible.
         * </p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/curl/Curl.java

         *   <li>POST - Submits data to be processed to a specified resource.</li>
         *   <li>PUT - Updates a current resource with new data.</li>
         *   <li>DELETE - Deletes the specified resource.</li>
         *   <li>HEAD - Same as GET but returns only HTTP headers and no document body.</li>
         *   <li>OPTIONS - Returns the HTTP methods that the server supports.</li>
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

                }
            });
        }
    
        // DELETE /api/admin/storage/delete/{id}/
        /**
         * Deletes a file from storage.
         * @param id The ID of the file to delete.
         * @return A JSON response indicating the success or failure of the operation.
         */
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  8. maven-tests/mvnw.cmd

    @IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0)
    @SET __MVNW_CMD__=
    @SET __MVNW_ERROR__=
    @SET __MVNW_PSMODULEP_SAVE=%PSModulePath%
    @SET PSModulePath=
    @FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java

            }
            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(false).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Deletes a role setting by ID.
         *
         * @param id the ID of the role setting to delete
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/role/setting/{id}
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. internal/lru/lru.go

    //
    // Size parameter set to 0 makes cache of unlimited size, e.g. turns LRU mechanism off.
    //
    // Providing 0 TTL turns expiring off.
    //
    // Delete expired entries every 1/100th of ttl value. Goroutine which deletes expired entries runs indefinitely.
    func NewLRU[K comparable, V any](size int, onEvict EvictCallback[K, V], ttl time.Duration) *LRU[K, V] {
    	if size < 0 {
    		size = 0
    	}
    	if ttl <= 0 {
    		ttl = noEvictionTTL
    	}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Apr 25 08:22:26 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top