Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 470 for spacer (0.11 sec)

  1. src/internal/filepathlite/path_windows.go

    	// Device names can have arbitrary trailing characters following a dot or colon.
    	base := name
    	for i := 0; i < len(base); i++ {
    		switch base[i] {
    		case ':', '.':
    			base = base[:i]
    		}
    	}
    	// Trailing spaces in the last path element are ignored.
    	for len(base) > 0 && base[len(base)-1] == ' ' {
    		base = base[:len(base)-1]
    	}
    	if !isReservedBaseName(base) {
    		return false
    	}
    	if len(base) == len(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/runtime/mcentral.go

    		traceRelease(trace)
    	}
    
    	// If we sweep spanBudget spans without finding any free
    	// space, just allocate a fresh span. This limits the amount
    	// of time we can spend trying to find free space and
    	// amortizes the cost of small object sweeping over the
    	// benefit of having a full free span to allocate from. By
    	// setting this to 100, we limit the space overhead to 1%.
    	//
    	// TODO(austin,mknyszek): This still has bad worst-case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/DebugOptions.java

        private String debugLevel;
    
        /**
         * Get a comma-separated list of debug information to be generated during compilation.
         * The list may contain any of the following keywords (without spaces in between):
         *
         * <dl>
         *     <dt>{@code source}
         *     <dd>Source file debugging information
         *     <dt>{@code lines}
         *     <dd>Line number debugging information
         *     <dt>{@code vars}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 02:50:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build_test.go

    		want []string
    	}{
    		{[]byte(`-r:foo -L/usr/white\ space/lib -lfoo\ bar -lbar\ baz`), []string{"-r:foo", "-L/usr/white space/lib", "-lfoo bar", "-lbar baz"}},
    		{[]byte(`-lextra\ fun\ arg\\`), []string{`-lextra fun arg\`}},
    		{[]byte("\textra     whitespace\r\n"), []string{"extra", "whitespace\r"}},
    		{[]byte("     \r\n      "), []string{"\r"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. internal/disk/stat_bsd.go

    		Free:   uint64(s.Bsize) * s.Bavail,
    		Files:  s.Files,
    		Ffree:  s.Ffree,
    		FSType: getFSType(s.Fstypename[:]),
    	}
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. internal/disk/stat_solaris.go

    		Free:   uint64(s.Frsize) * uint64(s.Bavail),
    		Files:  uint64(s.Files),
    		Ffree:  uint64(s.Ffree),
    		FSType: getFSType(s.Fstr[:]),
    	}
    	if info.Free > info.Total {
    		return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path)
    	}
    	info.Used = info.Total - info.Free
    	return info, nil
    }
    
    // GetDriveStats returns IO stats of the drive by its major:minor
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/bearertoken/bearertoken.go

    	"net/http"
    	"strings"
    
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/warning"
    )
    
    const (
    	invalidTokenWithSpaceWarning = "the provided Authorization header contains extra space before the bearer token, and is ignored"
    )
    
    type Authenticator struct {
    	auth authenticator.Token
    }
    
    func New(auth authenticator.Token) *Authenticator {
    	return &Authenticator{auth}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 25 13:22:28 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. cmd/rebalance-admin.go

    		}
    		if !ps.Participating {
    			continue
    		}
    		// for participating pools, total bytes to be rebalanced by this pool is given by,
    		// pf_c = (f_i + x)/c_i,
    		// pf_c - percentage free space across pools, f_i - ith pool's free space, c_i - ith pool's capacity
    		// i.e. x = c_i*pfc -f_i
    		totalBytesToRebal := float64(ps.InitCapacity)*meta.PercentFreeGoal - float64(ps.InitFreeSpace)
    		elapsed := time.Since(ps.Info.StartTime)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .header .title a {
      color: #212121;
      text-decoration: none;
    }
    .header .title a:hover {
      text-decoration: underline;
    }
    .header .description {
      width: 100%;
      text-align: right;
      white-space: nowrap;
    }
    @media screen and (max-width: 799px) {
      .header input {
        display: none;
      }
    }
    #detailsbox {
      display: none;
      z-index: 1;
      position: fixed;
      top: 40px;
      right: 20px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/AbstractTaskOutputPackagingBenchmark.java

            System.out.println(">>> Measuring format: " + packerName + " with accessor " + accessorName);
            Packer packer = PACKERS.get(packerName);
            DataAccessor accessor = ACCESSORS.get(accessorName);
            this.inputs = createInputFiles(fileCount, minFileSize, maxFileSize, accessor);
            this.sample = packSample("sample." + packerName, inputs, packer, accessor);
        }
    
        @TearDown(Level.Trial)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top