Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for parentDir (0.2 sec)

  1. cmd/xl-storage.go

    			return errFileAccessDenied
    		}
    		return osErrToFileErr(err)
    	}
    
    	// Remove parent dir of the source file if empty
    	parentDir := pathutil.Dir(srcFilePath)
    	s.deleteFile(srcVolumeDir, parentDir, false, false)
    
    	return nil
    }
    
    func (s *xlStorage) bitrotVerify(ctx context.Context, partPath string, partSize int64, algo BitrotAlgorithm, sum []byte, shardSize int64) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. src/cmd/go/internal/modload/load.go

    	if !ok {
    		return module.Version{}
    	}
    	return pkg.mod
    }
    
    // Lookup returns the source directory, import path, and any loading error for
    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    (!treeviewMenu.is(Selector.TREEVIEW_MENU)) {\n          return\n        }\n      }\n      \n      event.preventDefault()\n\n      const parentLi = $relativeTarget.parents(Selector.LI).first()\n      const isOpen   = parentLi.hasClass(ClassName.OPEN)\n\n      if (isOpen) {\n        this.collapse($(treeviewMenu), parentLi)\n      } else {\n        this.expand($(treeviewMenu), parentLi)\n      }\n    }\n\n    // Private\n\n    _setupListeners() {\n      $(document).on('click', this._config.trigger, (event) =>...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// we actually have information on whether it's active.
    	parentID := TaskID(ev.args[1])
    	if parentID == BackgroundTask {
    		// Note: a value of 0 here actually means no parent, *not* the
    		// background task. Automatic background task attachment only
    		// applies to regions.
    		parentID = NoTask
    		ev.args[1] = uint64(NoTask)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            if (parentId == null) {
                return null;
            } else {
                OperationDescriptor operationDescriptor = descriptorCache.get(parentId);
                if (operationDescriptor == null) {
                    throw new IllegalStateException(String.format("Parent operation with id %s not available.", parentId));
                }
                return operationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                } else if (!parentIds.add(parentData.id())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.id());
    
                    problems.add(Severity.FATAL, ModelProblem.Version.BASE, message.toString());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                } else if (!parentIds.add(parentData.getId())) {
                    StringBuilder message = new StringBuilder("The parents form a cycle: ");
                    for (String parentId : parentIds) {
                        message.append(parentId).append(" -> ");
                    }
                    message.append(parentData.getId());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top