Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 954 for space1 (0.13 sec)

  1. src/runtime/malloc.go

    	// provide addresses outside of those 33 bits. Pick 40 bits
    	// as a reasonable balance between address space usage by the
    	// page allocator, and flexibility for what mmap'd regions
    	// we'll accept for the heap. We can't just move to the full
    	// 48 bits because this uses too much address space for older
    	// iOS versions.
    	// TODO(mknyszek): Once iOS <14 is deprecated, promote ios/arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

      }
    
      @Test
      fun stringEscapingIsWeird() {
        val expected =
          """
          |--AaB03x
          |Content-Disposition: form-data; name="field with spaces"; filename="filename with spaces.txt"
          |Content-Type: text/plain; charset=utf-8
          |
          |okay
          |--AaB03x
          |Content-Disposition: form-data; name="field with %22"
          |
          |"
          |--AaB03x
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/go/doc/comment/text.go

    				fmt.Fprintf(&out, "[%s]: %s\n", def.Text, def.URL)
    			}
    		}
    	}
    	return out.Bytes()
    }
    
    // writeNL calls out.WriteByte('\n')
    // but first trims trailing spaces on the previous line.
    func writeNL(out *bytes.Buffer) {
    	// Trim trailing spaces.
    	data := out.Bytes()
    	n := 0
    	for n < len(data) && (data[len(data)-n-1] == ' ' || data[len(data)-n-1] == '\t') {
    		n++
    	}
    	if n > 0 {
    		out.Truncate(len(data) - n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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 (1)
  8. src/fmt/fmt_test.go

    // right places, that is, between arg pairs in which neither is a string.
    func TestBlank(t *testing.T) {
    	got := Sprint("<", 1, ">:", 1, 2, 3, "!")
    	expect := "<1>:1 2 3!"
    	if got != expect {
    		t.Errorf("got %q expected %q", got, expect)
    	}
    }
    
    // TestBlankln checks that Sprintln (and hence Println, Fprintln) puts spaces in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals(new File(baseDir, 'bad%1'), baseDirConverter.resolve('file:bad%1'))
            assertEquals(new File(baseDir, 'white space'), baseDirConverter.resolve('file:white space'))
        }
    
        @Test public void testResolveURIWithReservedCharacters() {
            File absoluteFile = new File('white space').canonicalFile
            assertEquals(absoluteFile, baseDirConverter.resolve(absoluteFile.toURI()))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
Back to top