Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for relPath (0.4 sec)

  1. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

        }
    
    
        /**
         * @param dr
         * @param reqPath
         * @return UNC path the redirect leads to
         */
        @Override
        public String handleDFSReferral ( DfsReferralData dr, String reqPath ) {
            if ( Objects.equals(this.dfsReferral, dr) ) {
                return this.unc;
            }
            this.dfsReferral = dr;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    }
    
    // getLoopDeviceFromSysfs finds the backing file for a loop
    // device from sysfs via "/sys/block/loop*/loop/backing_file".
    func getLoopDeviceFromSysfs(path string) (string, error) {
    	// If the file is a symlink.
    	realPath, err := filepath.EvalSymlinks(path)
    	if err != nil {
    		return "", fmt.Errorf("failed to evaluate path %s: %s", path, err)
    	}
    
    	devices, err := filepath.Glob("/sys/block/loop*")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/EventListener.kt

      open fun connectionReleased(
        call: Call,
        connection: Connection,
      ) {
      }
    
      /**
       * Invoked just prior to sending request headers.
       *
       * The connection is implicit, and will generally relate to the last [connectionAcquired] event.
       *
       * This can be invoked more than 1 time for a single [Call]. For example, if the response to the
       * [Call.request] is a redirect to a different address.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. hack/verify-vendor.sh

    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    # create a nice clean place to put our new vendor tree
    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    
    if [[ -z ${KEEP_TMP:-} ]]; then
        KEEP_TMP=false
    fi
    
    function cleanup {
      # make go module dirs writeable
      chmod -R +w "${_tmpdir}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    	}
    	return allErrs.ToAggregate()
    }
    
    func ValidateNodeResourcesFitArgs(path *field.Path, args *config.NodeResourcesFitArgs) error {
    	var allErrs field.ErrorList
    	resPath := path.Child("ignoredResources")
    	for i, res := range args.IgnoredResources {
    		path := resPath.Index(i)
    		if errs := metav1validation.ValidateLabelName(res, path); len(errs) != 0 {
    			allErrs = append(allErrs, errs...)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. pkg/volume/util/hostutil/hostutil_linux.go

    }
    
    // GetOwner returns the integer ID for the user and group of the given path
    func (hu *HostUtil) GetOwner(pathname string) (int64, int64, error) {
    	realpath, err := filepath.EvalSymlinks(pathname)
    	if err != nil {
    		return -1, -1, err
    	}
    	return GetOwnerLinux(realpath)
    }
    
    // GetMode returns permissions of the path.
    func (hu *HostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return GetModeLinux(pathname)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. cmd/perf-tests.go

    		RXTotalDuration: delta,
    		Error:           errStr,
    		TotalConn:       uint64(connectionsPerPeer),
    	}
    }
    
    // perfNetRequest - reader for http.request.body
    func perfNetRequest(ctx context.Context, deploymentID, reqPath string, reader io.Reader) (result madmin.SiteNetPerfNodeResult) {
    	result = madmin.SiteNetPerfNodeResult{}
    	cli, err := globalSiteReplicationSys.getAdminClient(ctx, deploymentID)
    	if err != nil {
    		result.Error = err.Error()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. hack/update-mocks.sh

    echo 'executing go generate command on below files'
    
    git_grep -l -z "//go:generate mockgen" | while read -r -d $'\0' file; do
      echo "- ${file}"
      temp_file_name="$(kube::realpath "$(mktemp -t "$(basename "$0").XXXXXX")")"
    
      # search for build tag used in file
      build_tag_string=$(grep -o '+build.*$' "$file") || true
    
      # if the file does not have build string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            expectOpen(path)
            allowWrite(path)
            expectClose(path)
        }
    
        void expectRealpath(String path) {
            expectations << new SftpExpectOnePath(SftpConstants.SSH_FXP_REALPATH, "REALPATH", path)
        }
    
        void expectStat(String path) {
            expectations << new SftpExpectOnePath(SftpConstants.SSH_FXP_STAT, "STAT", path)
        }
    
        void expectMkdir(String path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/DfsImpl.java

                r = start.next();
                String refPath = dr.getPath() != null ? '\\' + dr.getPath() : "";
                String nextPath = refPath + ( path != null ? path.substring(r.getPathConsumed()) : "" );
                if ( log.isDebugEnabled() ) {
                    log.debug(
                        String.format(
                            "Intermediate referral, server %s share %s refPath %s origPath %s nextPath %s",
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
Back to top