- Sort Score
- Result 10 results
- Languages All
Results 2331 - 2340 of 2,426 for Call (0.03 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
retval = _src.dec_ndr_long(); } } /** * SAMR GetMembersInAlias operation for retrieving alias members. * This operation returns the SIDs of all members in the specified alias. */ public static class SamrGetMembersInAlias extends DcerpcMessage { @Override public int getOpnum() { return 0x21; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
src/bytes/example_test.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package bytes_test import ( "bytes" "encoding/base64" "fmt" "io" "os" "slices" "strconv" "unicode" ) func ExampleBuffer() { var b bytes.Buffer // A Buffer needs no initialization. b.Write([]byte("Hello ")) fmt.Fprintf(&b, "world!")
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon May 12 16:07:54 UTC 2025 - 16.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
} /** * Deletes all documents with the specified session ID from the OpenSearch index. * * @param sessionId The session ID of the documents to delete. */ protected void deleteBySessionId(final String sessionId) { delete(builder -> builder.setQuery(QueryBuilders.termQuery(SESSION_ID, sessionId))); } /** * Deletes all documents from the OpenSearch index. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
return asHtml(path_AdminWebconfig_AdminWebconfigJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Resets the search criteria and displays all web crawler configurations. * * @param form the search form to reset * @return HTML response with the reset web config list */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0) -
cmd/metrics.go
} } // minioCollector is the Custom Collector type minioCollector struct { desc *prometheus.Desc } // Describe sends the super-set of all possible descriptors of metrics func (c *minioCollector) Describe(ch chan<- *prometheus.Desc) { ch <- c.desc } // Collect is called by the Prometheus registry when collecting metrics.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
String[] fields = { "content" }; List<String> keywords = SuggestUtil.getKeywords(query, fields); assertNotNull(keywords); // Should extract all unique terms assertTrue(keywords.size() > 0); } @Test public void testCreateBulkLineWithMinimalItem() { // Test with minimal SuggestItem
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package asm import ( "fmt" "internal/abi" "strconv" "strings" "text/scanner" "cmd/asm/internal/arch" "cmd/asm/internal/flags" "cmd/asm/internal/lex" "cmd/internal/obj" "cmd/internal/obj/ppc64" "cmd/internal/obj/riscv" "cmd/internal/obj/x86"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
private final Configuration delegate; /** * Creates a delegating configuration that forwards calls to another configuration * @param delegate * delegate to pass all non-overridden method calls to * */ public DelegatingConfiguration(final Configuration delegate) { this.delegate = delegate; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
private ElevateWord elevateWord; @Before public void setUp() { // Setup for each test } @Test public void testConstructorWithAllParameters() { // Test constructor with all parameters String word = "test word"; float boost = 2.5f; List<String> readings = Arrays.asList("reading1", "reading2"); List<String> fields = Arrays.asList("field1", "field2");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
if (file != null) { return file.getAbsolutePath(); } return null; } /** * Gets the names of all initialization parameters. This operation is not supported. * * @return Never returns, always throws UnsupportedOperationException
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 17.2K bytes - Viewed (3)