Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 943 for warning1 (0.06 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

          for (index in 0 until cachedHeaders.size) {
            val fieldName = cachedHeaders.name(index)
            val value = cachedHeaders.value(index)
            if ("Warning".equals(fieldName, ignoreCase = true) && value.startsWith("1")) {
              // Drop 100-level freshness warnings.
              continue
            }
            if (isContentSpecificHeader(fieldName) ||
              !isEndToEnd(fieldName) ||
              networkHeaders[fieldName] == null
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Jan 11 12:06:21 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/resources/checkstyle_ide_fragment.xml

            <property name="severity" value="warning"/>
            <message key="javadoc.missing" value="Types should explain their purpose" />
        </module>
    
        <!-- Public methods must have JavaDoc -->
        <module name="JavadocMethod">
            <property name="severity" value="warning"/>
            <property name="accessModifiers" value="public"/>
        </module>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 18:58:39 GMT 2021
    - 1.9K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       collection whose contents should be copied.
     *   <li>A static nested {@code Builder} class which can be used to populate a new immutable
     *       instance.
     * </ul>
     *
     * <h4>Warnings</h4>
     *
     * <ul>
     *   <li><b>Warning:</b> as with any collection, it is almost always a bad idea to modify an element
     *       (in a way that affects its {@link Object#equals} behavior) while it is contained in a
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  4. tests/test_orjson_response_class.py

    import warnings
    
    from fastapi import FastAPI
    from fastapi.exceptions import FastAPIDeprecationWarning
    from fastapi.responses import ORJSONResponse
    from fastapi.testclient import TestClient
    from sqlalchemy.sql.elements import quoted_name
    
    with warnings.catch_warnings():
        warnings.simplefilter("ignore", FastAPIDeprecationWarning)
        app = FastAPI(default_response_class=ORJSONResponse)
    
    
    @app.get("/orjson_non_str_keys")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 22 16:34:59 GMT 2026
    - 846 bytes
    - Click Count (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/logging/Slf4jLoggerManager.java

        // notice to self: what was this method supposed to do?
        //
        /**
         * <b>Warning</b>: ignored.
         */
        @Override
        public void returnComponentLogger(String role) {}
    
        /**
         * <b>Warning</b>: ignored.
         */
        @Override
        public void returnComponentLogger(String role, String hint) {}
    
        /**
         * <b>Warning</b>: ignored (always return <code>0</code>).
         */
        @Override
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Nov 08 08:49:11 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  6. compat/maven-builder-support/src/test/java/org/apache/maven/building/ProblemCollectorFactoryTest.java

            collector.setSource("pom.xml");
            collector.add(Problem.Severity.ERROR, "Error message", 10, 5, null);
            collector.add(Problem.Severity.WARNING, "Warning message", 15, 3, null);
    
            List<Problem> problems = collector.getProblems();
            assertEquals(2, problems.size(), "Should collect both problems");
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Jul 20 20:19:43 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  7. tests/test_pydantic_v1_error.py

    import sys
    import warnings
    
    import pytest
    
    from tests.utils import skip_module_if_py_gte_314
    
    if sys.version_info >= (3, 14):
        skip_module_if_py_gte_314()
    
    from fastapi import FastAPI
    from fastapi.exceptions import PydanticV1NotSupportedError
    
    with warnings.catch_warnings():
        warnings.simplefilter("ignore", UserWarning)
        from pydantic.v1 import BaseModel
    
    
    def test_raises_pydantic_v1_model_in_endpoint_param() -> None:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/core/log/JulLoggerAdapter.java

        @Override
        public boolean isWarnEnabled() {
            return logger.isLoggable(Level.WARNING);
        }
    
        @Override
        public void warn(final String message) {
            logger.logp(Level.WARNING, sourceClass, null, message);
        }
    
        @Override
        public void warn(final String message, final Throwable t) {
            logger.logp(Level.WARNING, sourceClass, null, message, t);
        }
    
        @Override
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Thu Jun 19 09:12:22 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  9. .idea/inspectionProfiles/Project_Default.xml

        <inspection_tool class="GroovyPointlessBoolean" enabled="false" level="WARNING" enabled_by_default="false" />
        <inspection_tool class="PointlessBooleanExpression" enabled="false" level="WARNING" enabled_by_default="false">
          <option name="m_ignoreExpressionsContainingConstants" value="true" />
        </inspection_tool>
        <inspection_tool class="jol" enabled="false" level="WARNING" enabled_by_default="false" />
      </profile>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 03 17:06:14 GMT 2021
    - 579 bytes
    - Click Count (0)
  10. fastapi/_compat/shared.py

        )
    
    
    def is_pydantic_v1_model_instance(obj: Any) -> bool:
        # TODO: remove this function once the required version of Pydantic fully
        # removes pydantic.v1
        try:
            with warnings.catch_warnings():
                warnings.simplefilter("ignore", UserWarning)
                from pydantic import v1
        except ImportError:  # pragma: no cover
            return False
        return isinstance(obj, v1.BaseModel)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 6.9K bytes
    - Click Count (0)
Back to Top