Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,345 for small7 (0.21 sec)

  1. 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)
  2. 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)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

        def "clears the end of the line when the area is scrolled and a label is updated with a smaller text between redraw"() {
            given:
            fillArea()
    
            when:
            redraw()
            progressArea.scrollDownBy(2)
            int i = 0
            for (StyledLabel label : progressArea.buildProgressLabels) {
                label.text = "Small " + i++
            }
            redraw()
    
            then:
            interaction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. src/image/jpeg/idct.go

    // ASSP, Vol. ASSP- 32, pp. 803-816, Aug. 1984.
    func idct(src *block) {
    	// Horizontal 1-D IDCT.
    	for y := 0; y < 8; y++ {
    		y8 := y * 8
    		s := src[y8 : y8+8 : y8+8] // Small cap improves performance, see https://golang.org/issue/27857
    		// If all the AC components are zero, then the IDCT is trivial.
    		if s[1] == 0 && s[2] == 0 && s[3] == 0 &&
    			s[4] == 0 && s[5] == 0 && s[6] == 0 && s[7] == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  5. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    02A9..02AD    ; valid                                  # 3.0  LATIN SMALL LETTER FENG DIGRAPH..LATIN LETTER BIDENTAL PERCUSSIVE
    02AE..02AF    ; valid                                  # 4.0  LATIN SMALL LETTER TURNED H WITH FISHHOOK..LATIN SMALL LETTER TURNED H WITH FISHHOOK AND TAIL
    02B0          ; mapped                 ; 0068          # 1.1  MODIFIER LETTER SMALL H
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  6. src/encoding/xml/example_text_marshaling_test.go

    	default:
    		name = "unrecognized"
    	case Small:
    		name = "small"
    	case Large:
    		name = "large"
    	}
    	return []byte(name), nil
    }
    
    func Example_textMarshalXML() {
    	blob := `
    	<sizes>
    		<size>small</size>
    		<size>regular</size>
    		<size>large</size>
    		<size>unrecognized</size>
    		<size>small</size>
    		<size>normal</size>
    		<size>small</size>
    		<size>large</size>
    	</sizes>`
    	var inventory struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. src/runtime/memmove_386.s

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. src/encoding/json/example_text_marshaling_test.go

    	default:
    		name = "unrecognized"
    	case Small:
    		name = "small"
    	case Large:
    		name = "large"
    	}
    	return []byte(name), nil
    }
    
    func Example_textMarshalJSON() {
    	blob := `["small","regular","large","unrecognized","small","normal","small","large"]`
    	var inventory []Size
    	if err := json.Unmarshal([]byte(blob), &inventory); err != nil {
    		log.Fatal(err)
    	}
    
    	counts := make(map[Size]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. test/interface/bigdata.go

    type Small struct { a int32 }
    func (z Small) M() int64 { return int64(z.a) }
    
    type Int int32
    func (z Int) M() int64 { return int64(z) }
    
    func nonptrs() {
    	var big Big = Big{ 10000, 2000, 300, 45 }
    	var small Small = Small{ 12345 }
    	var int Int = 12345
    
    	test("big", big)
    	test("&big", &big)
    	test("small", small)
    	test("&small", &small)
    	test("int", int)
    	test("&int", &int)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top