Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 144 for bland (0.07 sec)

  1. src/go/build/doc.go

    // constraints and containing a "//go:binary-only-package" comment. Like a
    // build constraint, this comment appeared at the top of a file, preceded
    // only by blank lines and other line comments and with a blank line
    // following the comment, to separate it from the package documentation.
    // Unlike build constraints, this comment is only recognized in non-test
    // Go source files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package importdecl0
    
    import ()
    
    import (
    	// we can have multiple blank imports (was bug)
    	_ "math"
    	_ "net/rpc"
    	init /* ERROR "cannot import package as init" */ "fmt"
    	// reflect defines a type "flag" which shows up in the gc export data
    	"reflect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/fix/buildtag.go

    		return false
    	}
    
    	// File is already gofmt-ed, so we know that if there are +build lines,
    	// they are in a comment group that starts with a //go:build line followed
    	// by a blank line. While we cannot delete comments from an AST and
    	// expect consistent output in general, this specific case - deleting only
    	// some lines from a comment block - does format correctly.
    	fixed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/reflect/example_test.go

    		field := st.Field(i)
    		if alias, ok := field.Tag.Lookup("alias"); ok {
    			if alias == "" {
    				fmt.Println("(blank)")
    			} else {
    				fmt.Println(alias)
    			}
    		} else {
    			fmt.Println("(not specified)")
    		}
    	}
    
    	// Output:
    	// field_0
    	// (blank)
    	// (not specified)
    }
    
    func ExampleTypeOf() {
    	// As interface types are only used for static typing, a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:04:36 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. src/go/doc/testdata/generics.0.golden

    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    	// MethodB has a blank receiver type parameter. 
    	func (t Type[_]) MethodB()
    
    	// MethodC has a lower-case receiver type parameter. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/go/doc/testdata/generics.2.golden

    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    	// MethodB has a blank receiver type parameter. 
    	func (t Type[_]) MethodB()
    
    	// MethodC has a lower-case receiver type parameter. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java

        public void addMaxLength(final String mimeType, final long maxLength) {
            if (StringUtil.isBlank(mimeType)) {
                throw new CrawlerSystemException("MIME type is a blank.");
            }
            if (maxLength < 0) {
                throw new CrawlerSystemException("The value of maxLength is invalid.");
            }
            maxLengthMap.put(mimeType, maxLength);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/regexp/syntax/doc.go

    ASCII character classes:
    
    	[[:alnum:]]    alphanumeric (== [0-9A-Za-z])
    	[[:alpha:]]    alphabetic (== [A-Za-z])
    	[[:ascii:]]    ASCII (== [\x00-\x7F])
    	[[:blank:]]    blank (== [\t ])
    	[[:cntrl:]]    control (== [\x00-\x1F\x7F])
    	[[:digit:]]    digits (== [0-9])
    	[[:graph:]]    graphical (== [!-~] == [A-Za-z0-9!"#$%&'()*+,\-./:;<=>?@[\\\]^_`{|}~])
    	[[:lower:]]    lower case (== [a-z])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:21:02 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/go/doc/example_internal_test.go

    	"c"
    )`,
    			want: []string{"a", "c"},
    		},
    		{
    			name: "named import",
    			in: `package p
    import (
    	"a"
    	n "b"
    
    	m "c"
    	"d"
    )`,
    			want: []string{"a", "c"},
    		},
    		{
    			name: "blank import",
    			in: `package p
    import (
    	"a"
    
    	_ "b"
    
    	_ "c"
    	"d"
    )`,
    			want: []string{"a", "b", "c"},
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 14:22:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. src/go/doc/testdata/generics.1.golden

    	func Constructor[lowerCase any]() Type[lowerCase]
    
    	// MethodA uses a different name for its receiver type parameter. 
    	func (t Type[A]) MethodA(p A)
    
    	// MethodB has a blank receiver type parameter. 
    	func (t Type[_]) MethodB()
    
    	// MethodC has a lower-case receiver type parameter. 
    	func (t Type[c]) MethodC()
    
    	// int16 shadows the predeclared type int16. 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top