- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 263 for populate (0.04 sec)
-
src/main/java/jcifs/internal/smb1/com/ServerData.java
* * Stores server-specific data obtained during SMB1 protocol negotiation. */ public class ServerData { /** * Default constructor for ServerData. * Creates an empty server data container to be populated during SMB negotiation. */ public ServerData() { // Default constructor } /** * Server flags from the SMB header. */ public byte sflags; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
* * @author George van den Driessche */ @GwtCompatible @NullMarked public interface TestContainerGenerator<T, E extends @Nullable Object> { /** Returns the sample elements that this generate populates its container with. */ SampleElements<E> samples(); /** * Creates a new container containing the given elements. TODO: would be nice to figure out how to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenTargTest.java
*/ class NegTokenTargTest { @Test @DisplayName("happy path – full token round‑trip") void testRoundTripFull() throws IOException { // Arrange – create a fully populated token ASN1ObjectIdentifier mech = new ASN1ObjectIdentifier("1.2.840.113554.1.2.2"); byte[] tokenArray = new byte[] { 1, 2, 3 }; byte[] mic = new byte[] { 9, 9, 9 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
samples/compare/src/test/kotlin/okhttp3/compare/ApacheHttpClientTest.kt
import org.junit.jupiter.api.Test /** * Apache HttpClient 5.x. * * https://hc.apache.org/httpcomponents-client-5.0.x/index.html * * Baseline test if we ned to validate OkHttp behaviour against other popular clients. */ class ApacheHttpClientTest { private val httpClient = HttpClients.createDefault() @StartStop private val server = MockWebServer() @AfterEach fun tearDown() { httpClient.close()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java
return null; } ClasspathContainer cpc = new ClasspathContainer(scope); if (cleanGraph.isEmptyEdges()) { // single entry in the classpath, populated from itself ArtifactMetadata amd = cleanGraph.getEntry().getMd(); cpc.add(amd); } else { ClasspathGraphVisitor v = new ClasspathGraphVisitor(cleanGraph, cpc);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java
/** The ignore failure type setting. */ public String ignoreFailureType; /** The failure count threshold setting. */ public String failureCountThreshold; /** The popular word setting. */ public String popularWord; /** The CSV file encoding setting. */ public String csvFileEncoding; /** The purge search log day setting. */ public String purgeSearchLogDay;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
// Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } public void test_stackTracePopulated() { // Test that stack trace is properly populated InvalidAccessTokenException exception = new InvalidAccessTokenException("JWT", "Invalid signature"); StackTraceElement[] stackTrace = exception.getStackTrace(); assertTrue(stackTrace.length > 0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/resources/fess_label_pt_BR.properties
labels.prev_page=Anterior labels.next_page=Próximo labels.did_not_match=Nenhuma informação correspondente a <b>{0}</b> foi encontrada. labels.search_title=Fess labels.search_popular_word_word=Palavras populares: labels.search_related_queries=Palavras relacionadas: labels.search_result_select_sort=- Ordenar - labels.search_result_select_num=- Número de resultados - labels.search_result_sort_score_desc=Por pontuação
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.1K bytes - Viewed (0) -
cmd/event-notification.go
} // NewEventNotifier - creates new event notification object. func NewEventNotifier(ctx context.Context) *EventNotifier { // targetList/bucketRulesMap/bucketRemoteTargetRulesMap are populated by NotificationSys.InitBucketTargets() return &EventNotifier{ targetList: event.NewTargetList(ctx), bucketRulesMap: make(map[string]event.RulesMap), } } // GetARNList - returns available ARNs.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
} /** * Create an EditBody DTO from a ProtwordsItem entity. * * @param entity source entity with protected words data * @param dictId identifier of the dictionary * @return populated EditBody for API responses */ protected EditBody createEditBody(final ProtwordsItem entity, final String dictId) { final EditBody body = new EditBody(); body.id = entity.getId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0)