Search Options

Results per page
Sort
Preferred Languages
Advance

Results 311 - 320 of 1,725 for setC (0.13 sec)

  1. src/main/java/org/codelibs/curl/CurlRequest.java

        public String body() {
            return body;
        }
    
        /**
         * Sets the proxy for the request.
         *
         * @param proxy the proxy
         * @return this CurlRequest instance
         */
        public CurlRequest proxy(final Proxy proxy) {
            this.proxy = proxy;
            return this;
        }
    
        /**
         * Sets the character encoding for the request.
         *
         * @param encoding the encoding
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

        }
    
        private void assertHighlightedQueries(Set<String> highlightedQuerySet) {
            @SuppressWarnings("unchecked")
            Set<String> set = (Set<String>) getMockRequest().getAttribute(Constants.HIGHLIGHT_QUERIES);
            if (highlightedQuerySet != null) {
                assertEquals(highlightedQuerySet.stream().sorted().collect(Collectors.joining("\n")),
                        set.stream().sorted().collect(Collectors.joining("\n")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

        }
    
        private Set<Artifact> resolveImpl(
                Collection<? extends MavenProject> projects,
                Collection<String> scopesToCollect,
                Collection<String> scopesToResolve,
                MavenSession session,
                Set<String> projectIds)
                throws ArtifactResolutionException, ArtifactNotFoundException {
            Set<Artifact> resolved = new LinkedHashSet<>();
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        //                                                                               Hook
        //                                                                              ======
        /**
         * Sets up HTML data for rendering, including help link.
         *
         * @param runtime the action runtime
         */
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

          }
        }
        return null;
      }
    
      public @Nullable E ceiling(E e) {
        ImmutableSortedSet<E> set = tailSet(e, true);
        return !set.isEmpty() ? set.first() : null;
      }
    
      public @Nullable E floor(E e) {
        ImmutableSortedSet<E> set = headSet(e, true);
        return !set.isEmpty() ? set.last() : null;
      }
    
      public ImmutableSortedSet<E> headSet(E toElement, boolean inclusive) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

            // Default constructor
        }
    
        /**
         * Sets the list of search result documents.
         *
         * @param documentItems The list of search result documents
         */
        public void setDocumentItems(final List<Map<String, Object>> documentItems) {
            this.documentItems = documentItems;
        }
    
        /**
         * Sets the facet response containing aggregated search facets.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java

            this.sequenceNumber = sequenceNumber;
            this.responseSequenceNumber = 0;
            this.heartbeatInterval = 0;
        }
    
        /**
         * Sets the context handle for the heartbeat.
         *
         * @param contextHandle the context handle from registration
         */
        public void setContextHandle(byte[] contextHandle) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/EnumMultisetTest.java

      }
    
      public void testEntrySet() {
        Multiset<Color> ms = EnumMultiset.create(Color.class);
        ms.add(Color.BLUE, 3);
        ms.add(Color.YELLOW, 1);
        ms.add(Color.RED, 2);
    
        Set<Object> uniqueEntries = Sets.newIdentityHashSet();
        uniqueEntries.addAll(ms.entrySet());
        assertEquals(3, uniqueEntries.size());
      }
    
      // Wrapper of EnumMultiset factory methods, because we need to skip create(Class).
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        }
    
        /**
         * Sets the maximum size of the delete document cache.
         *
         * @param maxDeleteDocumentCacheSize the maximum cache size before batch deletion is triggered
         */
        public void setMaxDeleteDocumentCacheSize(final int maxDeleteDocumentCacheSize) {
            this.maxDeleteDocumentCacheSize = maxDeleteDocumentCacheSize;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java

            // Act + Assert
            assertThrows(PACDecodingException.class, () -> new KerberosApRequest(notASequence, null));
        }
    
        @Test
        @DisplayName("seq ctor: valid minimal sequence sets apOptions and leaves ticket null")
        void sequenceConstructor_minimal_valid_setsApOptions_noTicket() throws Exception {
            // Arrange
            byte ap = (byte) 0x7A;
            ASN1Sequence seq = buildMinimalApReqSeq(ap);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top