Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 265 for appropriate (0.15 sec)

  1. guava/src/com/google/common/collect/EnumMultiset.java

        }
        return false;
      }
    
      /**
       * Returns {@code element} cast to {@code E}, if it actually is a nonnull E. Otherwise, throws
       * either a NullPointerException or a ClassCastException as appropriate.
       */
      private void checkIsE(Object element) {
        checkNotNull(element);
        if (!isActuallyE(element)) {
          throw new ClassCastException("Expected an " + type + " but got " + element);
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        }
    
        /**
         * Flattens a list of nodes.
         * Note that the {@code PathScope} argument should usually be null as the dependency tree has been
         * filtered during collection for the appropriate scope.
         *
         * @param session the {@link Session}, must not be {@code null}
         * @param node the {@link Node} to flatten, must not be {@code null}
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         * This class is intended to be used only through its static methods.
         */
        protected FessFunctions() {
            // nothing
        }
    
        /**
         * Generates an HTML opening or closing tag with appropriate language attribute.
         *
         * @param isOpen true to generate opening HTML tag, false for closing tag
         * @return HTML opening tag with language attribute or closing tag
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                node.getArtifact().setVersionRange(currentRange.restrict(previousRange));
    
                                // Select an appropriate available version from the (now restricted) range
                                // Note this version was selected before to get the appropriate POM
                                // But it was reset by the call to setVersionRange on restricting the version
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         * @param value
         *            the value to set to the property
         */
        void setValue(Object target, Object value);
    
        /**
         * Converts the value to the appropriate type if necessary based on the property type.
         *
         * @param <T>
         *            the converted type
         * @param value
         *            the value to be converted
         * @return the converted value
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. cmd/user-provider-utils.go

    package cmd
    
    import (
    	"context"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/auth"
    )
    
    // getUserWithProvider - returns the appropriate internal username based on the user provider.
    // if validate is true, an error is returned if the user does not exist.
    func getUserWithProvider(ctx context.Context, userProvider, user string, validate bool) (string, error) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java

                    "Unknown q: " + query.getClass() + " => " + query);
        }
    
        /**
         * Converts a wildcard query to an appropriate OpenSearch QueryBuilder.
         *
         * @param context The query context containing field and search information
         * @param wildcardQuery The Lucene wildcard query to convert
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/FacetInfo.java

            }
        }
    
        /**
         * Converts the sort string into a BucketOrder object for OpenSearch aggregations.
         * Parses sort configuration like "count.desc" or "term.asc" into appropriate bucket ordering.
         *
         * @return the BucketOrder instance representing the sort configuration
         */
        public BucketOrder getBucketOrder() {
            if (StringUtil.isNotBlank(sort)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    automatically synced to the public GitHub repository, we are unable to merge
    pull requests directly into the master branch. Instead, once a pull request is
    ready for merging, we'll make the appropriate changes in the internal codebase
    and, when the change is synced out, give the pull request author credit for the
    commit.
    
    Contributor License Agreement
    -----------------------------
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

                assertEquals(0, result);
            }
        }
    
        @Nested
        @DisplayName("CreateResponse Tests")
        class CreateResponseTests {
    
            @Test
            @DisplayName("Should create appropriate response")
            void testCreateResponse() {
                Smb2LockResponse response = request.createResponse(mockContext, request);
                assertNotNull(response);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top