Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 550 for warnings (0.05 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/project/validation/DefaultModelValidator.java

                this.result = result;
            }
    
            @Override
            public void add(ModelProblemCollectorRequest req) {
                if (!ModelProblem.Severity.WARNING.equals(req.getSeverity())) {
                    result.addMessage(req.getMessage());
                }
            }
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockWebServer.kt

      @Throws(IOException::class)
      fun shutdown() {
        delegate.close()
      }
    
      @Synchronized override fun after() {
        try {
          shutdown()
        } catch (e: IOException) {
          logger.log(Level.WARNING, "MockWebServer shutdown failed", e)
        }
      }
    
      override fun toString(): String = delegate.toString()
    
      @Throws(IOException::class)
      override fun close() = delegate.close()
    
      companion object {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 00:19:42 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

    import org.eclipse.aether.RepositoryException;
    import org.eclipse.aether.metadata.AbstractMetadata;
    import org.eclipse.aether.metadata.MergeableMetadata;
    import org.eclipse.aether.metadata.Metadata;
    
    /**
     * <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    @Deprecated
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/path-operation-configuration.md

    # โžก ๐Ÿ› ๏ธ ๐Ÿ“ณ
    
    ๐Ÿ“ค ๐Ÿ“š ๐Ÿ”ข ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ‘จโ€๐ŸŽจ* ๐Ÿ”— โšซ๏ธ.
    
    /// warning
    
    ๐Ÿ‘€ ๐Ÿ‘ˆ ๐Ÿ‘ซ ๐Ÿ”ข ๐Ÿšถโ€โ™€๏ธ ๐Ÿ”— *โžก ๐Ÿ› ๏ธ ๐Ÿ‘จโ€๐ŸŽจ*, ๐Ÿšซ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ ๐Ÿ”ข*.
    
    ///
    
    ## ๐Ÿ“จ ๐Ÿ‘” ๐Ÿ“Ÿ
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ (๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”) `status_code` โš™๏ธ ๐Ÿ“จ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ*.
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถโ€โ™€๏ธ ๐Ÿ”— `int` ๐Ÿ“Ÿ, ๐Ÿ’– `404`.
    
    โœ‹๏ธ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšซ ๐Ÿ’ญ โšซ๏ธโ” ๐Ÿ”  ๐Ÿ”ข ๐Ÿ“Ÿ, ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ โŒจ ๐Ÿ“‰ `status`:
    
    {* ../../docs_src/path_operation_configuration/tutorial001.py hl[3,17] *}
    
    ๐Ÿ‘ˆ ๐Ÿ‘” ๐Ÿ“Ÿ ๐Ÿ”œ โš™๏ธ ๐Ÿ“จ &amp; ๐Ÿ”œ ๐Ÿšฎ ๐Ÿ—„ ๐Ÿ”—.
    
    /// note | ๐Ÿ“ก โ„น
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. cmd/namespace-lock_test.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"runtime"
    	"testing"
    	"time"
    )
    
    // WARNING:
    //
    // Expected source line number is hard coded, 35, in the
    // following test. Adding new code before this test or changing its
    // position will cause the line number to change and the test to FAIL
    // Tests getSource().
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingMultiset.java

     * one or more methods to modify the behavior of the backing multiset as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMultiset} forward <b>indiscriminately</b> to
     * the methods of the delegate. For example, overriding {@link #add(Object, int)} alone <b>will
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/request-forms-and-files.md

    ะคะฐะนะปั‹ ะธ ะฟะพะปั ั„ะพั€ะผั‹ ะฑัƒะดัƒั‚ ะทะฐะณั€ัƒะถะตะฝั‹ ะฒ ะฒะธะดะต ะดะฐะฝะฝั‹ั… ั„ะพั€ะผั‹, ะธ ะฒั‹ ะฟะพะปัƒั‡ะธั‚ะต ั„ะฐะนะปั‹ ะธ ะฟะพะปั ั„ะพั€ะผั‹.
    
    ะ’ั‹ ะผะพะถะตั‚ะต ะพะฑัŠัะฒะธั‚ัŒ ะฝะตะบะพั‚ะพั€ั‹ะต ั„ะฐะนะปั‹ ะบะฐะบ `bytes`, ะฐ ะฝะตะบะพั‚ะพั€ั‹ะต - ะบะฐะบ `UploadFile`.
    
    /// warning | ะ’ะฝะธะผะฐะฝะธะต
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. docs/em/docs/advanced/path-operation-advanced-configuration.md

    # โžก ๐Ÿ› ๏ธ ๐Ÿง ๐Ÿ“ณ
    
    ## ๐Ÿ—„ {
    
    /// warning
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšซ "๐Ÿ•ด" ๐Ÿ—„, ๐Ÿ‘† ๐ŸŽฒ ๐Ÿšซ ๐Ÿ’ช ๐Ÿ‘‰.
    
    ///
    
    ๐Ÿ‘† ๐Ÿ’ช โš’ ๐Ÿ—„ `operationId` โš™๏ธ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ* โฎ๏ธ ๐Ÿ”ข `operation_id`.
    
    ๐Ÿ‘† ๐Ÿ”œ โœ”๏ธ โš’ ๐Ÿ’ญ ๐Ÿ‘ˆ โšซ๏ธ ๐Ÿ˜ ๐Ÿ”  ๐Ÿ› ๏ธ.
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial001.py hl[6] *}
    
    ### โš™๏ธ *โžก ๐Ÿ› ๏ธ ๐Ÿ”ข* ๐Ÿ“› {
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’š โš™๏ธ ๐Ÿ‘† ๐Ÿ”—' ๐Ÿ”ข ๐Ÿ“› `operationId`โ“‚, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ” ๐Ÿคญ ๐ŸŒ ๐Ÿ‘ซ &amp; ๐Ÿ” ๐Ÿ”  *โžก ๐Ÿ› ๏ธ* `operation_id` โš™๏ธ ๐Ÿ‘ซ `APIRoute.name`.
    
    ๐Ÿ‘† ๐Ÿ”œ โšซ๏ธ โฎ๏ธ โŽ ๐ŸŒ ๐Ÿ‘† *โžก ๐Ÿ› ๏ธ*.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-updates.md

    {* ../../docs_src/body_updates/tutorial001_py310.py hl[28:33] *}
    
    `PUT` is used to receive data that should replace the existing data.
    
    ### Warning about replacing { #warning-about-replacing }
    
    That means that if you want to update the item `bar` using `PUT` with a body containing:
    
    ```Python
    {
        "name": "Barz",
        "price": 3,
        "description": None,
    }
    ```
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/header.jsp

    							title="<la:message key="labels.development_mode_warning" />"
    						><a class="nav-link active" href="${installationLink}" target="_olh"><em
    								class="fa fa-exclamation-triangle text-warning"
    							></a></li>
    					</c:if>
    					<c:choose>
    						<c:when test="${!empty username && username != 'guest'}">
    							<li class="nav-item">
    								<div class="dropdown">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top