- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 34 for target_id (0.07 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/searchlist/DeleteForm.java
import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form class for deleting documents from search results in the admin interface. * Contains query and document ID fields for targeted document deletion. */ public class DeleteForm { /** * Creates a new instance of DeleteForm. * This constructor initializes the form for deleting documents from search results
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
* equals}, {@code hashCode} and {@code compareTo} because instances are expected to be mutated, and * so are not useful as collection keys. * * <p>jsr166e note: This class is targeted to be placed in java.util.concurrent.atomic. * * @since 1.8 * @author Doug Lea */ @GwtCompatible final class LongAdder extends Striped64 implements Serializable, LongAddable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/listen-notification-handlers.go
writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return } } rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()}) setEventStreamHeaders(w) // Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 6K bytes - Viewed (0) -
ci/devinfra/docker/windows/Dockerfile
(New-Object Net.WebClient).DownloadFile($url, 'C:\tmp\pyinstall.exe'); \ \ Write-Host 'Installing...'; \ Start-Process -FilePath \"C:\tmp\pyinstall.exe\" -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1 TargetDir=C:\Python312' -Wait; \ \ Write-Host 'Verifying install ...'; \ Write-Host ' python --version'; C:\python312\python.exe --version; \ \ Write-Host 'Verifying pip install ...'; \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jan 17 16:35:57 UTC 2025 - 8.4K bytes - Viewed (0) -
cmd/admin-handlers.go
active, _ := tgt.IsActive() targetID := tgt.ID() if active { targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOnline)} } else { targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOffline)} } list := lambdaMap[targetID.Name] list = append(list, targetIDStatus) lambdaMap[targetID.Name] = list }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
.github/PULL_REQUEST_TEMPLATE.md
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here: https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Jun 06 14:40:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
public void test_executeSuggestCreator_withTargetClassesDir() { createRequiredDirectories(); File targetDir = new File(System.getProperty("user.dir"), "target"); File targetClassesDir = new File(targetDir, "classes"); targetClassesDir.mkdirs(); mockProcessHelper.setExitValue(0); mockProcessHelper.setOutput("Success");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplTest.java
// Transport wiring - used by most tests when(transport.acquire()).thenReturn(transport); when(transport.getContext()).thenReturn(cifsContext); } // Helper to set private fields for targeted edge cases private static void setField(Object target, String name, Object value) { try { Field f = target.getClass().getDeclaredField(name); f.setAccessible(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
$installDir = 'C:\Python' + $truncatedVersion; \ Write-Host ('Installing into {0} (PrependPath: {1})...' -f $installDir, $($prependPath -eq 1)); \ $argumentList = ('/quiet InstallAllUsers=1 PrependPath={0} TargetDir={1}' -f $prependPath, $installDir); \ Start-Process -FilePath 'C:\tmp\pyinstall.exe' -ArgumentList $argumentList -Wait; \ \ Write-Host 'Verifying install...'; \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
if (value != null) { return value; } final String userDir = System.getProperty("user.dir"); final File targetDir = new File(userDir, "target"); return new File(targetDir, "logs").getAbsolutePath(); } /** * Encodes a URL path for filtering. * * @param path The path to encode. * @return The encoded path.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)