Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 739 for qParams (0.04 seconds)

  1. src/main/java/jcifs/smb/SmbTreeHandleImpl.java

        }
    
        /**
         *
         * @param req
         * @param params
         * @return response
         * @throws CIFSException
         */
        public <T extends CommonServerMessageBlockResponse> T send(final jcifs.internal.Request<T> req, final RequestParam... params)
                throws CIFSException {
            return send(req, null, params);
        }
    
        /**
         * @param request
         * @param response
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  2. fastapi/dependencies/utils.py

            BodyFieldInfo_kwargs["default"] = None
        if any(isinstance(f.field_info, params.File) for f in flat_dependant.body_params):
            BodyFieldInfo: type[params.Body] = params.File
        elif any(isinstance(f.field_info, params.Form) for f in flat_dependant.body_params):
            BodyFieldInfo = params.Form
        else:
            BodyFieldInfo = params.Body
    
            body_param_media_types = [
                f.field_info.media_type
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 37.6K bytes
    - Click Count (3)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryWrapper.java

         * These parameters will be applied to the wrapped factory upon calling initParameterMap().
         * @param params The map of parameters.
         */
        @Override
        public void setInitParameterMap(final Map<String, Object> params) {
            this.params.putAll(params);
        }
    
        /**
         * Initializes the parameter map of the wrapped factory with the parameters stored in this wrapper.
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Jul 06 02:13:03 GMT 2025
    - 5.2K bytes
    - Click Count (10)
  4. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

             * @param builder the XContentBuilder to use for building content
             * @param params the parameters to use during content building
             * @return the modified XContentBuilder
             * @throws IOException if an IO error occurs during building
             */
            XContentBuilder apply(XContentBuilder builder, ToXContent.Params params) throws IOException;
        }
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  5. native-image-tests/src/test/kotlin/okhttp3/nativeimage/WithArgumentSourceTest.kt

    import org.junit.jupiter.api.extension.ExtensionContext
    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.Arguments
    import org.junit.jupiter.params.provider.ArgumentsProvider
    import org.junit.jupiter.params.provider.ArgumentsSource
    import org.junit.jupiter.params.support.ParameterDeclarations
    
    /**
     * This enforces us having the params classes on the classpath to workaround
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Jul 22 20:31:49 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb/SmbTreeInternalTest.java

    import static org.mockito.Mockito.when;
    
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.extension.ExtendWith;
    import org.junit.jupiter.params.ParameterizedTest;
    import org.junit.jupiter.params.provider.EnumSource;
    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.CIFSContext;
    import jcifs.CIFSException;
    import jcifs.SmbTree;
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  7. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

          @Nullable Object firstParam, ImmutableList<Class<?>> sig) {
        Object[] params = new Object[sig.size()];
        params[0] = firstParam;
        if (params.length > 1) {
          params[1] = "";
          if (params.length > 2) {
            // fill in the rest of the array with arbitrary instances
            for (int i = 2; i < params.length; i++) {
              params[i] = ArbitraryInstances.get(sig.get(i));
            }
          }
        }
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 19K bytes
    - Click Count (0)
  8. tests/test_tutorial/test_query_params_str_validations/test_tutorial003.py

        response = client.get("/items/", params={"q": "query"})
        assert response.status_code == 200
        assert response.json() == {
            "items": [{"item_id": "Foo"}, {"item_id": "Bar"}],
            "q": "query",
        }
    
    
    def test_query_params_str_validations_q_too_short(client: TestClient):
        response = client.get("/items/", params={"q": "qu"})
        assert response.status_code == 422
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  9. cmd/warm-backend-gcs.go

    // Convert GCS errors to minio object layer errors.
    func gcsToObjectError(err error, params ...string) error {
    	if err == nil {
    		return nil
    	}
    
    	bucket := ""
    	object := ""
    	uploadID := ""
    	if len(params) >= 1 {
    		bucket = params[0]
    	}
    	if len(params) == 2 {
    		object = params[1]
    	}
    	if len(params) == 3 {
    		uploadID = params[2]
    	}
    
    	// in some cases just a plain error is being returned
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Mar 30 00:56:02 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  10. tests/test_tutorial/test_query_params_str_validations/test_tutorial002.py

    def test_query_params_str_validations_q_empty_str(client: TestClient):
        response = client.get("/items/", params={"q": ""})
        assert response.status_code == 200
        assert response.json() == {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
    
    
    def test_query_params_str_validations_q_query(client: TestClient):
        response = client.get("/items/", params={"q": "query"})
        assert response.status_code == 200
        assert response.json() == {
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 10:43:02 GMT 2025
    - 4.9K bytes
    - Click Count (0)
Back to Top