Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 302 for chainG (0.04 sec)

  1. .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)
  2. 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)
  3. src/test/java/jcifs/http/NtlmHttpFilterTest.java

                    HttpServletRequest req = (HttpServletRequest) request;
                    HttpServletResponse resp = (HttpServletResponse) response;
                    NtlmPasswordAuthentication ntlm = negotiate(req, resp, true);
                    if (ntlm == null) {
                        chain.doFilter(request, response);
                    }
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top