Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 417 for small7 (0.12 sec)

  1. src/strconv/itoa.go

    	if fastSmalls && i < nSmalls && base == 10 {
    		return append(dst, small(int(i))...)
    	}
    	dst, _ = formatBits(dst, i, base, false, true)
    	return dst
    }
    
    // small returns the string for an i with 0 <= i < nSmalls.
    func small(i int) string {
    	if i < 10 {
    		return digits[i : i+1]
    	}
    	return smallsString[i*2 : i*2+2]
    }
    
    const nSmalls = 100
    
    const smallsString = "00010203040506070809" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

        }
    
        def "wrapper jar is small"() {
            buildFile << """
                wrapper {
                    distributionUrl = 'http://localhost:8080/gradlew/dist'
                }
            """
    
            when:
            run "wrapper", "--no-validate-url"
    
            then:
            // wrapper needs to be small. Let's check it's smaller than some arbitrary 'small' limit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	String  string
    	PString *string
    
    	Map   map[string]Small
    	MapP  map[string]*Small
    	PMap  *map[string]Small
    	PMapP *map[string]*Small
    
    	EmptyMap map[string]Small
    	NilMap   map[string]Small
    
    	Slice   []Small
    	SliceP  []*Small
    	PSlice  *[]Small
    	PSliceP *[]*Small
    
    	EmptySlice []Small
    	NilSlice   []Small
    
    	StringSlice []string
    	ByteSlice   []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. cmd/server-rlimit.go

    		return err
    	}
    
    	_, vssLimit, err := sys.GetMaxMemoryLimit()
    	if err != nil {
    		return err
    	}
    
    	if vssLimit > 0 && vssLimit < humanize.GiByte {
    		logger.Info("WARNING: maximum virtual memory limit (%s) is too small for 'go runtime', please consider setting `ulimit -v` to unlimited",
    			humanize.IBytes(vssLimit))
    	}
    
    	if ctx.MemLimit > 0 {
    		maxLimit = ctx.MemLimit
    	}
    
    	if maxLimit > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/archive/tar/writer_test.go

    	}{{
    		// The writer test file was produced with this command:
    		// tar (GNU tar) 1.26
    		//   ln -s small.txt link.txt
    		//   tar -b 1 --format=ustar -c -f writer.tar small.txt small2.txt link.txt
    		file: "testdata/writer.tar",
    		tests: []testFnc{
    			testHeader{Header{
    				Typeflag: TypeReg,
    				Name:     "small.txt",
    				Size:     5,
    				Mode:     0640,
    				Uid:      73025,
    				Gid:      5000,
    				Uname:    "dsymonds",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/impl/BUILD

        srcs = [
            "iostream.cc",
        ],
        deps = [
            ":none",
            ":string",
            ":tensor_spec",
        ],
    )
    
    tf_cc_test(
        name = "iostream_test",
        size = "small",
        srcs = ["iostream_test.cc"],
        deps = [
            ":iostream",
            ":none",
            ":scalars",
            ":string",
            ":tensor_spec",
            "//tensorflow/core:framework",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 09:47:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        div().classAttr("col-5 p-0");
                            text(getTableTitle());
                            a().target("_blank").href("https://github.com/gradle/gradle/commits/" + executionDataProvider.getCommitId()).small().classAttr("text-muted").text(executionDataProvider.getCommitId()).end().end();
                        end();
                        div().classAttr("col-3 p-0");
                            if(renderFailureSelectButton()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. tests/binary/binaries_test.go

    func TestBinarySizes(t *testing.T) {
    	cases := map[string]struct {
    		minMb int64
    		maxMb int64
    	}{
    		// TODO: shrink the ranges here once the active work to reduce binary size is complete
    		// For now, having two small a range will result in lots of "merge conflicts"
    		"istioctl":    {60, 85},
    		"pilot-agent": {20, 24},
    		// TODO(https://github.com/kubernetes/kubernetes/issues/101384) bump this down a bit?
    		"pilot-discovery": {60, 85},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. docs/vi/docs/index.md

    <div style="text-align: right; margin-right: 10%;">Ines Montani - Matthew Honnibal - <strong>nhà sáng lập <a href="https://explosion.ai" target="_blank">Explosion AI</a> -...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. docs/uk/docs/index.md

    ---
    
    "_We adopted the **FastAPI** library to spawn a **REST** server that can be queried to obtain **predictions**. [for Ludwig]_"
    
    <div style="text-align: right; margin-right: 10%;">Piero Molino, Yaroslav Dudin, and Sai Sumanth Miryala - <strong>Uber</strong> <a href="https://eng.uber.com/ludwig-v0-2/" target="_blank"><small>(ref)</small></a></div>
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top