Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSessionId (0.26 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        }
    
        /**
         * An identifier for the session written to the execution data. Defaults to an auto-generated identifier.
         */
        @Nullable
        @Optional
        @Input
        public String getSessionId() {
            return sessionId;
        }
    
        public void setSessionId(@Nullable String sessionId) {
            this.sessionId = sessionId;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            final String url = getUrl(target);
            if (url == null) {
                throw new EsAccessException("url is null.");
            }
            final String id = getId(getSessionId(target), url);
            try (final XContentBuilder source = getXContentBuilder(target)) {
                final IndexResponse response = getClient().get(c -> c.prepareIndex().setIndex(index).setId(id).setSource(source)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Apr 04 09:58:36 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top