Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 522 for Unsupported (0.25 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: The specified sort {0} is unsupported. */
        public static final String ERRORS_invalid_query_unsupported_sort_field = "{errors.invalid_query_unsupported_sort_field}";
    
        /** The key of the message: The specified sort order {0} is unsupported. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * Not supported. This method exists only to hide {@link ImmutableSet#builderWithExpectedSize}
       * from consumers of {@code ImmutableSortedSet}.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Not supported by ImmutableSortedSet.
       */
      @DoNotCall("Use naturalOrder (which does not accept an expected size)")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
  3. association.go

    					fieldValue = reflect.Append(fieldValue, ev)
    				} else if ev.Type().Elem().AssignableTo(elemType) {
    					fieldValue = reflect.Append(fieldValue, ev.Elem())
    				} else {
    					association.Error = fmt.Errorf("unsupported data type: %v for relation %s", ev.Type(), association.Relationship.Name)
    				}
    
    				if elemType.Kind() == reflect.Struct {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlRequest.java

        }
    
        /**
         * Encodes the specified value using the character encoding.
         *
         * @param value the value to encode
         * @return the encoded value
         * @throws CurlException if the encoding is unsupported
         */
        protected String encode(final String value) {
            try {
                return URLEncoder.encode(value, encoding);
            } catch (final UnsupportedEncodingException e) {
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <name>requiresReports</name>
              <version>1.0.0</version><!-- no longer part of 1.1.0 -->
              <type>boolean</type>
              <description>Flags this Mojo to require running inside of a reports context. Unsupported since Maven 3.0.</description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>requiresOnline</name>
              <version>1.0.0/1.1.0</version>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 25 08:28:41 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            return !getConfig().isDfsDisabled() && haveCapabilitiy(Smb2Constants.SMB2_GLOBAL_CAP_DFS);
        }
    
        /**
         * Checks whether SMB3 encryption is supported by the server.
         *
         * @return whether SMB encryption is supported by the server
         */
        public boolean isEncryptionSupported() {
            return this.supportsEncryption;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

      }
    
      /**
       * We don't have API support for rfc822Name values (email addresses) in the subject alternative
       * name, but we don't crash either.
       */
      @Test
      fun `unsupported general name tag`() {
        val certificateByteString =
          (
            "MIIFEDCCA/igAwIBAgIRAJK4dE9xztDibHKj2NXZJbIwDQYJKoZIhvcNAQELBQA" +
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 43.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NetworkExplorer.java

     * on an SMB network like one might with Network Neighborhood or Windows
     * Explorer. The users credentials with be negotiated using NTLM SSP if
     * the client is Microsoft Internet Explorer.
     *
     * @deprecated Unsupported
     */
    @Deprecated
    /**
     * A servlet that provides network browsing capabilities for SMB shares.
     * This servlet allows users to browse SMB network resources through a web interface.
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java

            assertNotNull(result);
        }
    
        @Test
        @DisplayName("Test createFileInfo with unsupported info class returns null")
        void testCreateFileInfoWithUnsupportedInfoClass() throws Exception {
            response = new Smb2QueryDirectoryResponse(mockConfig, Smb2QueryDirectoryRequest.FILE_DIRECTORY_INFO); // Not supported
    
            // Use reflection to test private method
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            // The actual behavior removes {lang} for unsupported languages
            assertEquals("https://example.com/98.76/test.html", helpUrl);
    
            getMockRequest().setLocale(Locale.JAPANESE);
            helpUrl = systemHelper.getHelpUrl("https://example.com/{lang}/{version}/test.html");
            // Check if Japanese is actually supported or just use the fallback
            assertTrue(helpUrl.contains("98.76"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top