Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2691 - 2700 of 3,090 for FALSE (0.02 sec)

  1. android/guava/src/com/google/common/graph/ElementOrder.java

      }
    
      @Override
      public boolean equals(@CheckForNull Object obj) {
        if (obj == this) {
          return true;
        }
        if (!(obj instanceof ElementOrder)) {
          return false;
        }
    
        ElementOrder<?> other = (ElementOrder<?>) obj;
        return (type == other.type) && Objects.equal(comparator, other.comparator);
      }
    
      @Override
      public int hashCode() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/ElementOrder.java

      }
    
      @Override
      public boolean equals(@CheckForNull Object obj) {
        if (obj == this) {
          return true;
        }
        if (!(obj instanceof ElementOrder)) {
          return false;
        }
    
        ElementOrder<?> other = (ElementOrder<?>) obj;
        return (type == other.type) && Objects.equal(comparator, other.comparator);
      }
    
      @Override
      public int hashCode() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. cmd/listen-notification-handlers.go

    	err := globalHTTPListen.Subscribe(mask, localCh, ctx.Done(), func(ev event.Event) bool {
    		if ev.S3.Bucket.Name != "" && bucketName != "" {
    			if ev.S3.Bucket.Name != bucketName {
    				return false
    			}
    		}
    		return rulesMap.MatchSimple(ev.EventName, ev.S3.Object.Key)
    	})
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    	if bucketName != "" {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                bufferIndex += 2;
            }
            numEntries = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
            isEndOfSearch = ( buffer[bufferIndex] & 0x01 ) == 0x01 ? true : false;
            bufferIndex += 2;
            eaErrorOffset = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
            lastNameOffset = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmServlet.java

                ssn.setAttribute("ntlmdomain", ntlm.getUserDomain());
                ssn.setAttribute("ntlmuser", ntlm.getUsername());
            }
            else {
                HttpSession ssn = request.getSession(false);
                if ( ssn == null || ssn.getAttribute("NtlmHttpAuth") == null ) {
                    response.setHeader("WWW-Authenticate", "NTLM");
                    if ( offerBasic ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.6K bytes
    - Viewed (0)
  6. docs/em/docs/advanced/path-operation-advanced-configuration.md

    /// warning
    
    πŸš₯ πŸ‘† πŸ‘‰, πŸ‘† βœ”οΈ βš’ πŸ’­ πŸ”  1️⃣ πŸ‘† *➑ πŸ› οΈ πŸ”’* βœ”οΈ 😍 πŸ“›.
    
    πŸš₯ πŸ‘« 🎏 πŸ•Ή (🐍 πŸ“).
    
    ///
    
    ## 🚫 βšͺ️➑️ πŸ—„
    
    🚫 *➑ πŸ› οΈ* βšͺ️➑️ πŸ— πŸ—„ πŸ”— (&amp; ➑️, βšͺ️➑️ 🏧 🧾 βš™οΈ), βš™οΈ πŸ”’ `include_in_schema` &amp; βš’ ⚫️ `False`:
    
    ```Python hl_lines="6"
    {!../../docs_src/path_operation_advanced_configuration/tutorial003.py!}
    ```
    
    ## 🏧 πŸ“› βšͺ️➑️ #️⃣
    
    πŸ‘† πŸ’ͺ πŸ“‰ ⏸ βš™οΈ βšͺ️➑️ #️⃣ *➑ πŸ› οΈ πŸ”’* πŸ—„.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/cors.md

    * `allow_credentials` - Indica que os cookies devem ser suportados para requisiçáes de origem cruzada. O padrão é `False`. Além disso, `allow_origins` não pode ser definido como `['*']` para que as credenciais sejam permitidas, as origens devem ser especificadas.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/query-params.md

    or
    
    ```
    http://127.0.0.1:8000/items/foo?short=yes
    ```
    
    or any other case variation (uppercase, first letter in uppercase, etc), your function will see the parameter `short` with a `bool` value of `True`. Otherwise as `False`.
    
    
    ## Multiple path and query parameters
    
    You can declare multiple path parameters and query parameters at the same time, **FastAPI** knows which is which.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/c/eager/custom_device_testutil.cc

      // Set to true whenever a TensorHandle is copied onto the device
      bool* arrived_flag;
      // Set to true whenever an operation is executed
      bool* executed_flag;
      // If true, only explicit op placements are accepted. If false, uses
      // type-based dispatch.
      bool strict_scope_placement;
    };
    
    struct LoggedTensor {
      TFE_TensorHandle* tensor;
      LoggedTensor() = delete;
      explicit LoggedTensor(TFE_TensorHandle* tensor) : tensor(tensor) {}
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Mar 03 20:47:31 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    updateHighlightInfo(highlightInfo, width);
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
                        session.setAttribute(SCREEN_WIDTH, width);
                    }
                } else {
                    final HttpSession session = req.getSession(false);
                    if (session != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top