Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 432 for bland (0.04 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    				line := fset.PositionFor(impspec.Path.ValuePos, false).Line
    
    				// We deleted an entry but now there may be
    				// a blank line-sized hole where the import was.
    				if line-lastLine > 1 || !gen.Rparen.IsValid() {
    					// There was a blank line immediately preceding the deleted import,
    					// so there's no need to close the hole. The right parenthesis is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java

            if (StringUtil.isBlank(endpoint)) {
                throw new CrawlingAccessException("endpoint is blank.");
            }
            builder.endpoint(endpoint);
            final String accessKey = getInitParameter("accessKey", null, String.class);
            if (StringUtil.isBlank(accessKey)) {
                throw new CrawlingAccessException("accessKey is blank.");
            }
            final String secretKey = getInitParameter("secretKey", null, String.class);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/proxy/apis/config/validation/validation.go

    		validModes.Insert(string(kubeproxyconfig.ProxyModeNFTables))
    	}
    
    	if mode == "" || validModes.Has(string(mode)) {
    		return nil
    	}
    
    	errMsg := fmt.Sprintf("must be %s or blank (blank means the best-available proxy [currently iptables])", strings.Join(sets.List(validModes), ", "))
    	return field.ErrorList{field.Invalid(fldPath.Child("ProxyMode"), string(mode), errMsg)}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K 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