Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,394 for REQUEST (0.09 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

            .addHeader("h2", "v2")
            .socketHandler(body)
            .build(),
        )
        val request =
          Request
            .Builder()
            .url(server.url("/"))
            .method("POST", AsyncRequestBody())
            .build()
        val call = client.newCall(request)
        call.execute().use { response ->
          val sink = (request.body as AsyncRequestBody?)!!.takeSink()
          sink.writeUtf8("hey\n")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         */
        @Resource
        protected AccessTokenService accessTokenService;
    
        /**
         * HTTP servlet request object providing access to request parameters, headers,
         * and other request-specific information needed for API processing.
         */
        @Resource
        protected HttpServletRequest request;
    
        /**
         * Returns an empty OptionalThing for login manager since API actions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            }
        }
    
        /**
         * Internal method to send a request to the server.
         *
         * @param request the request to send
         * @throws IOException if an I/O error occurs
         */
        protected void doSend0(final Request request) throws IOException {
            try {
                doSend(request);
            } catch (final IOException ioe) {
                if (LogStream.level > 2) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java

            this.memoryRegion = memoryRegion;
            this.completed = false;
        }
    
        /**
         * Get request ID
         *
         * @return unique request identifier
         */
        public long getRequestId() {
            return requestId;
        }
    
        /**
         * Get request type
         *
         * @return type of request
         */
        public RequestType getType() {
            return type;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbTreeInternalTest.java

            // Arrange - generic return type respected
            when(tree.send(request)).thenReturn(response);
    
            // Act
            CommonServerMessageBlockResponse out = tree.send(request);
    
            // Assert
            assertSame(response, out);
            verify(tree).send(request);
        }
    
        @Test
        @DisplayName("send with multiple params returns the stubbed response")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

            .newBuilder()
            .addInterceptor(Interceptor { throw IOException() })
            .build()
        val request = Request.Builder().url(server.url("/")).build()
        c.newCall(request).enqueue(callback)
        val response = callback.await(request.url)
        assertThat(response.request).isEqualTo(request)
      }
    
      @Test
      fun reusedSinksGetIndependentTimeoutInstances() {
        server.enqueue(MockResponse())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

      override fun clone(): Call = RealCall(client, originalRequest, forWebSocket)
    
      override fun request(): Request = originalRequest
    
      /**
       * Immediately closes the socket connection if it's currently held. Use this to interrupt an
       * in-flight request from any thread. It's the caller's responsibility to close the request body
       * and response body streams; otherwise resources may be leaked.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java

     *
     * @param <REQ> The type of the request
     * @param <REP> The type of the response, which must extend {@code Result<REQ>}
     * @param request The original request that was processed
     * @param result The result of the request, if successful; may be null if an error occurred
     * @param error Any error that occurred during processing; null if the request was successful
     * @since 4.0.0
     */
    @Experimental
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

            DefaultProjectBuildingRequest request = new DefaultProjectBuildingRequest();
    
            request.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0);
            request.setResolveDependencies(false);
    
            request.setLocalRepository(configuration.getLocalRepository());
            request.setBuildStartTime(configuration.getBuildStartTime());
            request.setUserProperties(configuration.getUserProperties());
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/cors/CorsHandler.java

        /**
         * Processes the CORS request by setting appropriate headers.
         *
         * @param origin the origin of the request
         * @param request the servlet request
         * @param response the servlet response
         */
        public abstract void process(String origin, ServletRequest request, ServletResponse response);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top