Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1281 - 1290 of 4,987 for sull (0.03 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java

            if (endTime != null) {
                addFieldToSource(sourceMap, "endTime", endTime);
            }
            if (jobName != null) {
                addFieldToSource(sourceMap, "jobName", jobName);
            }
            if (jobStatus != null) {
                addFieldToSource(sourceMap, "jobStatus", jobStatus);
            }
            if (lastUpdated != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/webapp/WebXmlTest.java

            try (InputStream is = getClass().getClassLoader().getResourceAsStream("../webapp/WEB-INF/web.xml")) {
                if (is == null) {
                    try (InputStream is2 = Thread.currentThread().getContextClassLoader().getResourceAsStream("web.xml")) {
                        if (is2 != null) {
                            webXmlDocument = builder.parse(is2);
                        }
                    }
                } else {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 09:08:35 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/cache/RequestResult.java

             */
            REP result,
    
            /**
             * Any error that occurred during processing; null if the request was successful
             */
            Throwable error) {
    
        /**
         * Determines if the request was processed successfully.
         *
         * @return true if no error occurred during processing (error is null), false otherwise
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Feb 07 00:45:02 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManager.java

         * independently from <code>maven-toolchains-plugin</code>.
         *
         * @param session the Maven session, must not be {@code null}
         * @param type the type, must not be {@code null}
         * @param requirements the requirements, may be {@code null}
         * @return the matching toolchains, never {@code null}
         * @since 3.3.0
         */
        List<Toolchain> getToolchains(MavenSession session, String type, Map<String, String> requirements);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Feb 12 13:13:28 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  5. docs/fr/docs/project-generation.md

    Dépôt GitHub : [Modèle Full Stack FastAPI](https://github.com/tiangolo/full-stack-fastapi-template)
    
    ## Modèle Full Stack FastAPI - Pile technologique et fonctionnalités { #full-stack-fastapi-template-technology-stack-and-features }
    
    - ⚡ [**FastAPI**](https://fastapi.tiangolo.com/fr) pour l'API backend Python.
      - 🧰 [SQLModel](https://sqlmodel.tiangolo.com) pour les interactions avec la base de données SQL en Python (ORM).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/AbstractTable.java

        Map<C, V> row = safeGet(rowMap(), rowKey);
        return row != null && Maps.safeContainsKey(row, columnKey);
      }
    
      @Override
      public @Nullable V get(@Nullable Object rowKey, @Nullable Object columnKey) {
        Map<C, V> row = safeGet(rowMap(), rowKey);
        return (row == null) ? null : safeGet(row, columnKey);
      }
    
      @Override
      public boolean isEmpty() {
        return size() == 0;
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/core/timer/TimeoutManager.java

                }
            }
        }
    
        /**
         * Stops the process.
         */
        public synchronized void stop() {
            if (thread != null) {
                thread.interrupt();
                thread = null;
                if (logger.isDebugEnabled()) {
                    logger.debug("TimeoutManager stopped.");
                }
            }
        }
    
        /**
         * Interrupts the thread and waits for it to terminate.
         *
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat May 10 01:32:17 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java

         *
         * @param key the key under which to store the session data, must not be {@code null}
         * @param oldValue the expected data currently associated with the key, may be {@code null}
         * @param newValue the data to associate with the key, may be {@code null} to remove the mapping
         * @return {@code true} if the key mapping was successfully updated from the old value to the new value,
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 4.7K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

        public Map<String, String> getSubstitutions() {
            return substitutions;
        }
    
        @SkipWhenEmpty
        @InputFiles
        public FileTree getInputDir() {
            FileTree coreFileTree = null;
            FileTree xpackFileTree = null;
            if (includeXpack.get().isEmpty() == false) {
                xpackPatternSet.setIncludes(includeXpack.get().stream().map(prefix -> prefix + "*/**").collect(Collectors.toList()));
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java

        public void test_constructor_withBothNullUrls() {
            // Test with both URLs as null
            String parentUrl = null;
            String url = null;
            ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
    
            assertNotNull(exception);
            assertEquals("Not Found: null Parent: null", exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.9K bytes
    - Click Count (0)
Back to Top