Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 339 for mirrors (0.03 sec)

  1. tests/test_validation_error_context.py

    def test_validation_error_with_only_path():
        errors = [{"type": "missing", "loc": ("body", "name"), "msg": "Field required"}]
        exc = RequestValidationError(errors, endpoint_ctx={"path": "GET /api/test"})
        error_str = str(exc)
        assert "Endpoint: GET /api/test" in error_str
        assert 'File "' not in error_str
    
    
    def test_validation_error_with_no_context():
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 06 12:21:57 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. README.md

    Development for branch 8x remains in the shared repository:
    
    - https://gitbox.apache.org/repos/asf/lucene-solr.git
    
    ## GitHub forks?
    
    If you are using GitHub, make a clone of the corresponding repository
    mirror and create your pull requests against the main branch:
    
    - Lucene: <https://github.com/apache/lucene>
    Registered: Sat Dec 20 08:54:13 UTC 2025
    - Last Modified: Wed Mar 10 10:02:23 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/DefaultDependencyResolutionResult.java

            List<Exception> errors = resolutionErrors.get(dependency);
            return (errors != null) ? Collections.unmodifiableList(errors) : Collections.emptyList();
        }
    
        public void setResolutionErrors(Dependency dependency, List<Exception> errors) {
            dependencies.add(dependency);
            unresolvedDependencies.add(dependency);
            resolutionErrors.put(dependency, errors);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. fastapi/dependencies/utils.py

                async_exit_stack=async_exit_stack,
                embed_body_fields=embed_body_fields,
            )
            background_tasks = solved_result.background_tasks
            if solved_result.errors:
                errors.extend(solved_result.errors)
                continue
            if sub_dependant.use_cache and sub_dependant.cache_key in dependency_cache:
                solved = dependency_cache[sub_dependant.cache_key]
            elif (
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 37.6K bytes
    - Viewed (3)
  5. docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    /// tip
    
    Some editors check for unused function parameters, and show them as errors.
    
    Using these `dependencies` in the *path operation decorator* you can make sure they are executed while avoiding editor/tooling errors.
    
    It might also help avoid confusion for new developers that see an unused parameter in your code and could think it's unnecessary.
    
    ///
    
    /// info
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuildingExceptionTest.java

                    message.contains("[WARNING] Deprecated feature used"),
                    "Message should contain warning when no errors are present");
    
            assertTrue(
                    !message.contains("(") || !message.contains("error"),
                    "Message should not contain error count when there are no errors");
        }
    
        @Test
        void testExceptionMessageWithEmptyResults() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jul 26 19:15:57 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/project/DependencyResolutionResult.java

         */
        List<Dependency> getUnresolvedDependencies();
    
        /**
         * Gets the errors that occurred while building the dependency graph.
         *
         * @return The errors that occurred while building the dependency graph, never {@code null}.
         */
        List<Exception> getCollectionErrors();
    
        /**
         * Gets the errors that occurred while resolving the specified dependency.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java

                        fatals.add(req.getMessage());
                    }
                    break;
                case ERROR:
                    if (!errors.contains(req.getMessage())) {
                        errors.add(req.getMessage());
                    }
                    break;
                case WARNING:
                    if (!warnings.contains(req.getMessage())) {
                        warnings.add(req.getMessage());
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  9. docs_src/custom_request_and_route/tutorial002_py39.py

                try:
                    return await original_route_handler(request)
                except RequestValidationError as exc:
                    body = await request.body()
                    detail = {"errors": exc.errors(), "body": body.decode()}
                    raise HTTPException(status_code=422, detail=detail)
    
            return custom_route_handler
    
    
    app = FastAPI()
    app.router.route_class = ValidationErrorLoggingRoute
    
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 08:55:32 UTC 2025
    - 926 bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/index.jsp

    					<div>
    						<la:info id="msg" message="true">
    							<div class="alert alert-info">${msg}</div>
    						</la:info>
    						<la:errors header="errors.front_header"
    							footer="errors.front_footer" prefix="errors.front_prefix"
    							suffix="errors.front_suffix" />
    					</div>
    					<fieldset>
    						<legend><la:message key="labels.search" /></legend>
    						<div class="clearfix">
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 05:40:20 UTC 2025
    - 7K bytes
    - Viewed (0)
Back to top