Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 691 for panama (0.03 sec)

  1. src/main/java/org/codelibs/core/collection/SLinkedList.java

        /**
         * Returns the element at the specified position.
         *
         * @param index the index
         * @return the element
         */
        public E get(final int index) {
            return getEntry(index).element;
        }
    
        /**
         * Sets the element at the specified position.
         *
         * @param index the index
         * @param element the element
         * @return the original element
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

        }
    
        public void test_getXContentOutputStream_success() {
            ToXContent xContent = new ToXContent() {
                @Override
                public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
                    builder.startObject();
                    builder.field("content", "test");
                    builder.endObject();
                    return builder;
                }
            };
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Displays the failure URL list page with pagination support.
         *
         * @param pageNumber the page number to display
         * @param form the search form containing filter criteria
         * @return HTML response for the failure URL list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/net/URLUtil.java

            }
        }
    
        /**
         * Creates a <code>URL</code> by parsing the specified spec within the specified context.
         *
         * @param context
         *            The context in which to parse the spec. Must not be {@literal null}.
         * @param spec
         *            A string to be parsed as a <code>URL</code>. Must not be {@literal null} or empty.
         * @return A <code>URL</code>.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SID.java

        /**
         * Resolves an array of SIDs to obtain their account and domain names.
         *
         * @param authorityServerName the server to use for SID resolution
         * @param auth the authentication credentials to use
         * @param sids the array of SIDs to resolve
         * @param offset the starting offset in the array
         * @param length the number of SIDs to resolve
         * @throws IOException if there is an error resolving the SIDs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

         *
         * @param config
         *            the configuration to use for this request
         */
        public Smb2SetInfoRequest(final Configuration config) {
            this(config, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
        /**
         * Constructs a SMB2 set info request with the specified configuration and file ID
         *
         * @param config
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java

         *
         * @param ipAddress the IP address
         */
        public void setIpAddress(String ipAddress) {
            this.ipAddress = ipAddress;
        }
    
        /**
         * Sets the IP address from an InetAddress.
         *
         * @param address the InetAddress
         */
        public void setIpAddress(InetAddress address) {
            if (address != null) {
                this.ipAddress = address.getHostAddress();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt

        val request = server.takeRequest()
        assertThat(request.headers["Cookie"]).isEqualTo("a=android; b=banana")
      }
    
      @Test
      fun receiveAndSendMultipleCookies() {
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("Set-Cookie", "a=android")
            .addHeader("Set-Cookie", "b=banana")
            .build(),
        )
        server.enqueue(MockResponse())
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/MethodDesc.java

         */
        Class<?> getValueClassOfMap();
    
        /**
         * Invokes the method and returns its result.
         *
         * @param <T>
         *            the return type of the method
         * @param target
         *            the target object. Must not be {@literal null}
         * @param args
         *            the method arguments
         * @return the result of the method
         */
        <T> T invoke(Object target, Object... args);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top