- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 302 for chainG (0.03 sec)
-
.github/workflows/scorecard.yml
# This workflow uses actions that are not certified by GitHub. They are provided # by a third-party and are governed by separate terms of service, privacy # policy, and support documentation. name: Scorecard supply-chain security on: # For Branch-Protection check. Only the default branch is supported. See # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection branch_protection_rule:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
client .newBuilder() .addNetworkInterceptor( Interceptor { chain: Interceptor.Chain? -> val request = chain!! .request() .newBuilder() .header("Host", "privateobject.com") .build() chain.proceed(request) }, ).build() server.enqueue(MockResponse())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
@Nullable ValueReference<K, V> getValueReference(); /** Sets the value reference for this entry. */ void setValueReference(ValueReference<K, V> valueReference); /** Returns the next entry in the chain. */ @Nullable ReferenceEntry<K, V> getNext(); /** Returns the entry's hash. */ int getHash(); /** Returns the key for this entry. */ @Nullable K getKey(); /*
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Feb 11 18:34:30 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
private byte[] blob = null; /** * Constructs a session setup AndX response. * * @param config the configuration to use * @param andx the next command in the AndX chain, or null */ public SmbComSessionSetupAndXResponse(final Configuration config, final ServerMessageBlock andx) { super(config, andx); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java
RequestTrace level2 = new RequestTrace("level2", level1, "level2-data"); RequestTrace level3 = new RequestTrace(level2, "level3-data"); // Verify the chain assertNull(root.parent()); assertEquals(root, level1.parent()); assertEquals(level1, level2.parent()); assertEquals(level2, level3.parent()); // Verify context inheritance
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.3K bytes - Viewed (0) -
ci/official/upload.sh
# limitations under the License. # ============================================================================== # This script uploads all staged artifacts from all previous builds in the same # job chain to GCS and PyPI. source "${BASH_SOURCE%/*}/utilities/setup.sh" # Calculate the version number for choosing the final directory name. This adds # "-devYYYYMMDD" to the end of the version string for nightly builds.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Mar 04 22:39:12 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/RequestTest.java
verify(mockRequest, times(1)).isCancel(); } @Test void testGetNext() { // Test case for getNext method Request nextRequest = mock(Request.class); // Mock a chained request when(mockRequest.getNext()).thenReturn(nextRequest); Request actualNextRequest = mockRequest.getNext();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
corsHandlerFactory.setHandler(handler); corsFilter.doFilter(mockRequest, mockResponse, mockFilterChain); assertFalse(mockFilterChain.wasDoFilterCalled()); // Chain should not continue for OPTIONS assertTrue(corsHandlerFactory.wasGetCalled()); assertTrue(handler.wasProcessCalled()); assertEquals(origin, handler.getLastOrigin());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java
* of the request. May be null if no specific context is needed. * @param parent The parent request trace that led to this request, establishing the chain of nested * operations. May be null for top-level requests. * @param data Additional data associated with this request trace, typically containing the actual request
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.9K bytes - Viewed (0)