Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 866 for small7 (0.12 sec)

  1. src/unicode/letter_test.go

    	{TitleCase, 0x80, 0x80},
    	{TitleCase, 'Å', 'Å'},
    	{TitleCase, 'å', 'Å'},
    
    	// 0131;LATIN SMALL LETTER DOTLESS I;Ll;0;L;;;;;N;;;0049;;0049
    	{UpperCase, 0x0131, 'I'},
    	{LowerCase, 0x0131, 0x0131},
    	{TitleCase, 0x0131, 'I'},
    
    	// 0133;LATIN SMALL LIGATURE IJ;Ll;0;L;<compat> 0069 006A;;;;N;LATIN SMALL LETTER I J;;0132;;0132
    	{UpperCase, 0x0133, 0x0132},
    	{LowerCase, 0x0133, 0x0133},
    	{TitleCase, 0x0133, 0x0132},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top