Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 2,046 for Case (0.02 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            assertEquals(1, dataMap.size());
            assertEquals("Z1", dataMap.get("z"));
        }
    
        /** Case 5: Overwrite processing for multiple fields, existing overwrite keys are also properly removed */
        public void test_mergeResponseData_multipleOverwrite() {
            Map<String, Object> dataMap = new HashMap<>();
            // Case where the initial dataMap also contains overwrite keys
            dataMap.put("m", "M0");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java

         * <p>
         * The pathnames used for matching will be relative to the specified base directory
         * and use {@code '/'} as separator, regardless of the hosting operating system.
         *
         * @param baseDirectory the base directory for relativizing paths during matching
         * @param includes the patterns of files to include, or null/empty for including all files
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 21 19:37:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. cmd/erasure-healing.go

    }
    
    func objectErrToDriveState(reason error) string {
    	switch {
    	case reason == nil:
    		return madmin.DriveStateOk
    	case IsErr(reason, errDiskNotFound):
    		return madmin.DriveStateOffline
    	case IsErr(reason, errFileNotFound, errFileVersionNotFound, errVolumeNotFound, errPartMissing, errOutdatedXLMeta, errLegacyXLMeta):
    		return madmin.DriveStateMissing
    	case IsErr(reason, errFileCorrupt, errPartCorrupt):
    		return madmin.DriveStateCorrupt
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java

                        // don't stop processing in case a future segment explicitly excludes this repo
                    }
                    // check for external:http:*
                    else if (EXTERNAL_HTTP_WILDCARD.equals(repo) && isExternalHttpRepo(originalRepository)) {
                        result = true;
                        // don't stop processing in case a future segment explicitly excludes this repo
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

                switch (tagged.getTagNo()) {
                case 0:
                    ASN1Integer pvno = ASN1Util.as(ASN1Integer.class, tagged);
                    if (!pvno.getValue().equals(new BigInteger(KerberosConstants.KERBEROS_VERSION))) {
                        throw new PACDecodingException("Invalid kerberos version");
                    }
                    break;
                case 1:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/graphql.md

    /// tip
    
    **GraphQL** solves some very specific use cases.
    
    It has **advantages** and **disadvantages** when compared to common **web APIs**.
    
    Make sure you evaluate if the **benefits** for your use case compensate the **drawbacks**. 🤓
    
    ///
    
    ## GraphQL Libraries { #graphql-libraries }
    
    Here are some of the **GraphQL** libraries that have **ASGI** support. You could use them with **FastAPI**:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/netbios/NbtExceptionTest.java

            return Stream.of(
                    // SUCCESS
                    Arguments.of(NbtException.SUCCESS, 0, "SUCCESS"),
    
                    // ERR_NAM_SRVC
                    // Note: FMT_ERR case has a bug in NbtException.getErrorString() - missing break statement causes fallthrough
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.FMT_ERR, "ERR_NAM_SRVC/FMT_ERR: Format ErrorUnknown error code: 1"),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/AbstractIterator.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.base;
    
    import static com.google.common.base.NullnessCasts.uncheckedCastNullableTToT;
    import static com.google.common.base.Preconditions.checkState;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java

            if (entry == null)
                return;
    
            switch (changeType) {
            case FILE_ADDED:
                // Invalidate cache - we need to fetch new file info
                entry.invalidate();
                break;
    
            case FILE_REMOVED:
                entry.removeChild(childName);
                break;
    
            case FILE_MODIFIED:
                // Remove from cache to force refresh
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbResourceLocator.java

    public interface SmbResourceLocator {
    
        /**
         * Returns the last component of the target URL. This will
         * effectively be the name of the file or directory represented by this
         * <code>SmbFile</code> or in the case of URLs that only specify a server
         * or workgroup, the server or workgroup will be returned. The name of
         * the root URL <code>smb://</code> is also <code>smb://</code>. If this
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top