Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 337 for paren (0.02 sec)

  1. cmd/os_unix.go

    			return nil
    		}
    	}
    
    	// Slow path: make sure parent exists and then call Mkdir for path.
    	i := len(dirPath)
    	for i > 0 && os.IsPathSeparator(dirPath[i-1]) { // Skip trailing path separator.
    		i--
    	}
    
    	j := i
    	for j > 0 && !os.IsPathSeparator(dirPath[j-1]) { // Scan backward over element.
    		j--
    	}
    
    	if j > 1 {
    		// Create parent.
    		if err := osMkdirAll(dirPath[:j-1], perm, baseDir); err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/Files.java

        }
      }
    
      /**
       * Creates any necessary but nonexistent parent directories of the specified file. Note that if
       * this operation fails it may have succeeded in creating some (but not all) of the necessary
       * parent directories.
       *
       * @throws IOException if an I/O error occurs, or if any necessary but nonexistent parent
       *     directories of the specified file could not be created.
       * @since 4.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/search.js

              loadImage(img, url, --limit);
            }, IMG_LOADING_DELAY);
          } else {
            // $(img).attr('src', contextPath + "/images/noimage.png");
            $(img)
              .parent()
              .parent()
              .css("display", "none");
          }
          imgData = null;
        });
        imgData.src = url;
      };
    
      $("img.thumbnail").each(function() {
        $(this).css(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java

                }
            } catch (CIFSException e) {
                throw SmbException.wrap(e);
            }
        }
    
        /**
         * Enhanced exists method that uses directory leasing for parent directory caching
         *
         * @param smbFile the SmbFile to check existence for
         * @return true if the file exists
         * @throws SmbException if an error occurs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         * <p>
         * This method logs user access activity for the current request.
         * </p>
         *
         * @param runtime the action runtime context
         * @return the action response from the parent hook
         */
        @Override
        public ActionResponse hookBefore(final ActionRuntime runtime) {
            final String requestPath = runtime.getRequestPath();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                        parent = parent.getParent();
                    }
                } catch (final IOException e) {
                    logger.warn("Failed to delete {}", path, e);
                }
            }
    
            /**
             * Extracts the document ID from a file path.
             *
             * @param file the file path
             * @return the extracted document ID
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocationTracker.java

     * under the License.
     */
    package org.apache.maven.api.model;
    
    public interface InputLocationTracker {
        InputLocation getLocation(Object field);
    
        /**
         * Gets the parent InputLocation where this InputLocation may have been imported from.
         * Can return {@code null}.
         *
         * @return InputLocation
         * @since 4.0.0
         */
        InputLocation getImportedFrom();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Feb 06 23:20:42 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/projects/project-dependencies-resolver/project-with-exclusions/pom.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.apache.maven.its.mng4034</groupId>
      <artifactId>parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <dependencies>
        <dependency>
          <groupId>org.apache.maven.its</groupId>
          <artifactId>maven-core-it-support</artifactId>
          <version>1.3</version>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java

            Field tcField = DcerpcHandle.class.getDeclaredField("transportContext");
            tcField.setAccessible(true);
            tcField.set(handle, mockContext);
    
            // Set max_recv field using reflection (default is 4280 in parent class)
            Field maxRecvField = DcerpcHandle.class.getDeclaredField("max_recv");
            maxRecvField.setAccessible(true);
            maxRecvField.set(handle, 4280);
    
            // Inject mocks using reflection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ACE.java

        /**
         * Inheritance flag: ACE applies only to children, not to the object itself
         */
        int FLAGS_INHERIT_ONLY = 0x08;
        /**
         * Inheritance flag: ACE was inherited from parent
         */
        int FLAGS_INHERITED = 0x10;
    
        /**
         * Return the SID associated with this ACE.
         *
         * @return ACE target SID
         */
        SID getSID();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top