Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,024 for Specifies (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelSource.java

             * Attempts to locate an existing POM file at or within the specified project path.
             *
             * <p>This method is used to find POM files in various contexts, such as:</p>
             * <ul>
             *   <li>Directly at the specified path</li>
             *   <li>Within a directory at the specified path</li>
             *   <li>In standard Maven project locations relative to the specified path</li>
             * </ul>
             *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 09:46:53 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java

            int expectedSize = 14 + pipeName.getBytes(StandardCharsets.UTF_16LE).length;
            assertEquals(expectedSize, request.size());
        }
    
        @Test
        @DisplayName("Test encode with name only (no timeout specified)")
        void testEncodeWithNameOnly() {
            // Setup
            String pipeName = "TestPipe";
            FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RangeMap.java

       * least decide on a policy for when to use which.
       */
    
      /**
       * Returns the value associated with the specified key, or {@code null} if there is no such value.
       *
       * <p>Specifically, if any range in this range map contains the specified key, the value
       * associated with that range is returned.
       */
      @Nullable V get(K key);
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

        /**
         * Gets the file system information from the response cast to the specified type.
         *
         * @param <T> the type of file system information to return
         * @param clazz the class of the file system information to return
         * @return the filesystem info cast to the specified type
         * @throws CIFSException if the information cannot be cast to the specified type
         */
        @SuppressWarnings("unchecked")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/DocMap.java

         * @return the value to which the specified key is mapped, or null if no mapping exists
         */
        @Override
        public Object get(final Object key) {
            return parent.get(key);
        }
    
        /**
         * Associates the specified value with the specified key in this map.
         *
         * @param key the key with which the specified value is to be associated
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/GenericsUtil.java

                return isTypeOf(parameterizedType.getRawType(), clazz);
            }
            return false;
        }
    
        /**
         * Returns the raw class of the specified type.
         * <ul>
         * <li>If <code>type</code> is a <code>Class</code>, it is returned as-is.</li>
         * <li>If <code>type</code> is a parameterized type, its raw type is returned.</li>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

            /**
             * Constructs a new PathSource with the specified path.
             *
             * @param path the filesystem path to the source content
             * @throws NullPointerException if path is null
             */
            PathSource(Path path) {
                this(path, null);
            }
    
            /**
             * Constructs a new PathSource with the specified path and location.
             *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/SystemUtil.java

        /**
         * Returns the system property value for the specified key.
         *
         * @param key the property key
         * @return the property value, or null if not found
         */
        public static String getProperty(String key) {
            return System.getProperty(key);
        }
    
        /**
         * Returns the system property value for the specified key, or the default value if not found.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

            assertArgumentNotNull("name", name);
    
            return getResources(getClassLoader(targetClass), name);
        }
    
        /**
         * Searches for all resources with the specified name from the specified class loader.
         *
         * @param loader
         *            The class loader. Must not be {@literal null}.
         * @param name
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SSPContext.java

         */
        void dispose() throws CIFSException;
    
        /**
         * Checks whether the specified security mechanism is supported.
         * @param mechanism the security mechanism OID to check
         * @return whether the specified mechanism is supported
         */
        boolean isSupported(ASN1ObjectIdentifier mechanism);
    
        /**
         * Checks whether the specified mechanism is the preferred mechanism.
         * @param selectedMech the selected mechanism OID
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top