Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1021 - 1030 of 2,557 for FALSE (0.06 sec)

  1. docs/em/docs/tutorial/header-params.md

    , ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `user_agent` ๐Ÿ‘† ๐Ÿ›Ž ๐Ÿ”œ ๐Ÿ ๐Ÿ“Ÿ, โ†ฉ๏ธ ๐Ÿ’†โ€โ™‚ ๐ŸŽฏ ๐Ÿฅ‡ ๐Ÿ”ค `User_Agent` โš–๏ธ ๐Ÿ•ณ ๐ŸŽ.
    
    ๐Ÿšฅ ๐Ÿค” ๐Ÿ‘† ๐Ÿ’ช โŽ ๐Ÿง ๐Ÿ› ๏ธ ๐ŸŽฆ ๐Ÿ” , โš’ ๐Ÿ”ข `convert_underscores` `Header` `False`:
    
    {* ../../docs_src/header_params/tutorial002.py hl[10] *}
    
    /// warning
    
    โญ โš’ `convert_underscores` `False`, ๐Ÿป ๐Ÿคฏ ๐Ÿ‘ˆ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ—ณ & ๐Ÿ’ฝ / โš™๏ธ ๐ŸŽš โฎ๏ธ ๐ŸŽฆ.
    
    ///
    
    ## โŽ ๐ŸŽš
    
    โšซ๏ธ ๐Ÿ’ช ๐Ÿ“จ โŽ ๐ŸŽš. ๐Ÿ‘ˆ โ›“, ๐ŸŽ ๐ŸŽš โฎ๏ธ ๐Ÿ’— ๐Ÿ’ฒ.
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿ‘ˆ ๐Ÿ’ผ โš™๏ธ ๐Ÿ“‡ ๐Ÿ†Ž ๐Ÿ“„.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/RemovalCause.java

       * Map#remove}, {@link ConcurrentMap#remove}, or {@link Iterator#remove}.
       */
      EXPLICIT {
        @Override
        boolean wasEvicted() {
          return false;
        }
      },
    
      /**
       * The entry itself was not actually removed, but its value was replaced by the user. This can
       * result from the user invoking {@link Cache#put}, {@link LoadingCache#refresh}, {@link Map#put},
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. docs/debugging/inspect/decrypt-v2.go

    			return fmt.Errorf("decoding key returned: %w", err)
    		}
    		sr.SetPrivateKey(privKey)
    	}
    	sr.ReturnNonDecryptable(true)
    
    	// Debug corrupted streams.
    	if false {
    		sr.SkipEncrypted(true)
    		return sr.DebugStream(os.Stdout)
    	}
    	extracted := false
    	for {
    		stream, err := sr.NextStream()
    		if err != nil {
    			if err == io.EOF {
    				if extracted {
    					return nil
    				}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Feb 17 17:09:42 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

         * indicating that the URL should not be crawled. Otherwise, it returns {@code true}.
         *
         * @param paramMap the parameter map containing potential exclusion patterns
         * @param url the URL to be checked for crawlability
         * @return {@code true} if the URL is crawlable; {@code false} if it matches the exclusion pattern
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. cmd/warm-backend-azure.go

    		Prefix:     &az.Prefix,
    		MaxResults: &maxResults,
    	})
    	if !pager.More() {
    		return false, nil
    	}
    
    	resp, err := pager.NextPage(ctx)
    	if err != nil {
    		if strings.Contains(err.Error(), "no more pages") {
    			return false, nil
    		}
    		return false, azureToObjectError(err, az.Bucket, az.Prefix)
    	}
    
    	return len(resp.Segment.BlobItems) > 0, nil
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    return list;
                }
            }, WebConfigBhv.class.getCanonicalName());
    
            // Test with available=false (should not add available query)
            List<WebConfig> configList = crawlingConfigHelper.getAllWebConfigList(true, true, false, null);
            assertEquals(1, configList.size());
    
            // Test with idList parameter
            List<String> idList = List.of("W1", "W2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/ImmutableLongArray.java

          return true;
        }
        if (!(object instanceof ImmutableLongArray)) {
          return false;
        }
        ImmutableLongArray that = (ImmutableLongArray) object;
        if (this.length() != that.length()) {
          return false;
        }
        for (int i = 0; i < length(); i++) {
          if (this.get(i) != that.get(i)) {
            return false;
          }
        }
        return true;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 22K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/ImmutableIntArray.java

          return true;
        }
        if (!(object instanceof ImmutableIntArray)) {
          return false;
        }
        ImmutableIntArray that = (ImmutableIntArray) object;
        if (this.length() != that.length()) {
          return false;
        }
        for (int i = 0; i < length(); i++) {
          if (this.get(i) != that.get(i)) {
            return false;
          }
        }
        return true;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/SmbConnectionTest.java

            Properties props = new Properties();
            props.setProperty("jcifs.smb.client.useUnicode", "true");
            props.setProperty("jcifs.smb.client.useBatching", "false");
    
            PropertyConfiguration config = new PropertyConfiguration(props);
    
            assertTrue(config.isUseUnicode(), "Unicode should be enabled");
            assertFalse(config.isUseBatching(), "Batching should be disabled");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/header-params.md

    Wenn Sie aus irgendeinem Grund das automatische Konvertieren von Unterstrichen zu Bindestrichen abschalten mรถchten, setzen Sie den Parameter `convert_underscores` auf `False`.
    
    {* ../../docs_src/header_params/tutorial002_an_py310.py hl[10] *}
    
    /// warning | Achtung
    
    Bevor Sie `convert_underscores` auf `False` setzen, bedenken Sie, dass manche HTTP-Proxys und Server die Verwendung von Headern mit Unterstrichen nicht erlauben.
    
    ///
    
    ## Doppelte Header
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top