Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 50 for IDs (0.19 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

        }
      }
    
      /**
       * This decodes a value into its contents using a preceding member of the same SEQUENCE. For
       * example, extensions type IDs specify what types to use for the corresponding values.
       *
       * If the hint is unknown [chooser] should return null which will cause the value to be decoded as
       * an opaque byte string.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            StopwordsItem item = stopwordsFile.get(1).get();
            stopwordsFile.delete(item);
    
            // Verify the item count decreased
            // Note: get(1) may still return an item if IDs are reassigned
            assertTrue(stopwordsFile.stopwordsItemList.size() < originalSize);
        }
    
        // Test reload with InputStream
        public void test_reload_withComments() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         * specified in the configIdList parameter.
         *
         * @param sessionId unique identifier for this crawling session
         * @param configIdList list of data configuration IDs to crawl
         */
        public void crawl(final String sessionId, final List<String> configIdList) {
            final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getDataConfigListByIds(configIdList);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         * This is a cleanup operation that removes inactive session data while preserving active ones.
         *
         * @param activeSessionId a set of session IDs to preserve during the cleanup operation
         */
        public void deleteOldSessions(final Set<String> activeSessionId) {
            final List<CrawlingInfo> activeSessionList =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

            '500':
              $ref: '#/components/responses/InternalServerError'
    
      /favorites:
        get:
          tags:
            - favorite
          summary: List favorites
          description: Returns favorited document IDs
          operationId: listFavorites
          parameters:
            - name: queryId
              in: query
              description: Query ID where the document is contained
              required: true
              schema:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    -Dorg.apache.pdfbox.rendering.UsePureJavaCMYKConversion=true\n\
    
    #-Xdebug\n\
    #-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=127.0.0.1:8000\n\
    
    # job
    
    # System job IDs for scheduled jobs.
    job.system.job.ids=default_crawler
    # Template for web crawler job title.
    job.template.title.web=Web Crawler - {0}
    # Template for file crawler job title.
    job.template.title.file=File Crawler - {0}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_en.properties

    labels.lang=Language
    labels.outputs=Outputs
    labels.pos=Part-of-speech
    labels.purgeJobLogDay=Delete old job logs
    labels.purgeUserInfoDay=Delete old user logs
    labels.reading=Reading
    labels.roleTypeIds=Role IDs
    labels.scriptData=Script
    labels.scriptResult=Result
    labels.scriptType=Execution Method
    labels.segmentation=Segmentation
    labels.startTime=Start Time
    labels.target=Target
    labels.token=Token
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt

            }
          }
          if (associatedStreamId == 0) {
            writer.headers(outFinished, streamId, requestHeaders)
          } else {
            require(!client) { "client streams shouldn't have associated stream IDs" }
            // HTTP/2 has a PUSH_PROMISE frame.
            writer.pushPromise(associatedStreamId, streamId, requestHeaders)
          }
        }
    
        if (flushHeaders) {
          writer.flush()
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

            }
            ipString = ipString.substring(0, percentIndex);
          }
          return textToNumericFormatV6(ipString);
        } else if (hasDot) {
          if (percentIndex != -1) {
            return null; // Scope IDs are not supported for IPV4
          }
          return textToNumericFormatV4(ipString);
        }
        return null;
      }
    
      private static byte @Nullable [] textToNumericFormatV4(String ipString) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.lang=Sprache
    labels.outputs=Ausgaben
    labels.pos=Wortart
    labels.purgeJobLogDay=Alte Jobprotokolle löschen
    labels.purgeUserInfoDay=Alte Benutzerprotokolle löschen
    labels.reading=Lesen
    labels.roleTypeIds=Rollen-IDs
    labels.scriptData=Skript
    labels.scriptResult=Ergebnis
    labels.scriptType=Ausführungsmethode
    labels.segmentation=Segmentierung
    labels.startTime=Startzeit
    labels.target=Ziel
    labels.token=Token
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
Back to top