Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 279 for probar (0.03 sec)

  1. tests/test_tutorial/test_dependencies/test_tutorial011.py

            ),
            (
                "/query-checker/?q=qwerty",
                200,
                {"fixed_content_in_query": False},
            ),
            (
                "/query-checker/?q=foobar",
                200,
                {"fixed_content_in_query": True},
            ),
        ],
    )
    def test_get(path, expected_status, expected_response, client: TestClient):
        response = client.get(path)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResult.java

            return new UpgradeResult(Collections.emptySet(), Collections.emptySet(), Collections.emptySet());
        }
    
        /**
         * Merges this result with another result, combining the sets of POMs.
         * This allows proper aggregation of results from multiple strategies without double-counting.
         */
        public UpgradeResult merge(UpgradeResult other) {
            Set<Path> mergedProcessed = new HashSet<>(this.processedPoms);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Jun 07 06:22:47 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
         * Converts a TermRangeQuery to a QueryBuilder with the given boost value.
         * Handles both search fields and default field queries with proper range semantics.
         *
         * @param context the query context
         * @param termRangeQuery the term range query to convert
         * @param boost the boost value to apply
         * @return the converted QueryBuilder
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/cisupport/CIDetectorHelperTest.java

        }
    
        @Test
        void jenkins() throws Exception {
            assertEquals(JenkinsCIDetector.NAME + ";", runner(Map.of("CI", "true", "WORKSPACE", "foobar")));
        }
    
        @Test
        void circleci() throws Exception {
            assertEquals(CircleCIDetector.NAME + ";", runner(Map.of("CIRCLECI", "true")));
        }
    
        @Test
        void teamcity() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. CONTRIBUTORS

    over-counts some people's contributions because they were responsible for
    mirroring out changes from our internal repo.
    
    This files serves mainly to credit people who have not received proper credit
    in the Git history.
    
    Doug Lea, author of some concurrency libraries
    
    Joshua O'Madadhain (@jrtom), author of some common.graph commits beyond those
    that are already attributed to him in the Git history:
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 09 21:14:06 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/PluginPrefixResolverStub.java

            return new PluginPrefixResult() {
                @Override
                public String getGroupId() {
                    return "com.foobar";
                }
    
                @Override
                public String getArtifactId() {
                    return "bazbaz";
                }
    
                @Override
                public ArtifactRepository getRepository() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    ## Test Files Overview
    
    ### 1. ExtractorResourceManagementTest.java
    **Purpose**: Verify proper resource management in Extractor implementations.
    
    **Key Test Areas**:
    - Resource closure on successful extraction (MS Office extractors)
    - Resource closure on failed extraction
    - Improved error messages with context
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

        for (V element : elements) {
          assertFalse("Should not contain value " + element, getMap().containsValue(element));
        }
      }
    
      /**
       * @return an array of the proper size with {@code null} as the key of the middle element.
       */
      protected Entry<K, V>[] createArrayWithNullKey() {
        Entry<K, V>[] array = createSamplesArray();
        int nullKeyLocation = getNullLocation();
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java

                    final long lastValue = lastTime.get();
                    if (lastValue == 0) {
                        // First access to this host - no delay needed
                        // Set current time to allow proper delay for next access
                        lastTime.set(SystemUtil.currentTimeMillis());
                        return;
                    }
    
                    long currentTime = SystemUtil.currentTimeMillis();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/security/first-steps.md

        * Поэтому, чтобы аутентифицироваться в нашем API, он отправляет HTTP-заголовок `Authorization` со значением `Bearer ` плюс сам токен.
        * Если токен содержит `foobar`, то содержимое заголовка `Authorization` будет: `Bearer foobar`.
    
    ## Класс `OAuth2PasswordBearer` в **FastAPI** { #fastapis-oauth2passwordbearer }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Sep 30 11:24:39 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top