Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 209 for bland (0.06 sec)

  1. src/go/doc/example.go

    	// paths for imports w/o renames (should be good enough most of the time).
    	var namedImports []ast.Spec
    	var blankImports []ast.Spec // _ imports
    
    	// To preserve the blank lines between groups of imports, find the
    	// start position of each group, and assign that position to all
    	// imports from that group.
    	groupStarts := findImportGroupStarts(file.Imports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                             * blank password initializes signing.
                             */
                            if (transport.isSignatureSetupRequired( auth )) {
                                if( auth.hashesExternal && NtlmPasswordAuthentication.DEFAULT_PASSWORD != NtlmPasswordAuthentication.BLANK ) {
                                    /* preauthentication
                                     */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"internal/buildcfg"
    	. "internal/types/errors"
    )
    
    func (check *Checker) declare(scope *Scope, id *syntax.Name, obj Object, pos syntax.Pos) {
    	// spec: "The blank identifier, represented by the underscore
    	// character _, may be used in a declaration like any other
    	// identifier but the declaration does not introduce a new
    	// binding."
    	if obj.Name() != "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// Test is reserved for errors that only apply while in self-test mode.
    	Test
    
    	/* package names */
    
    	// BlankPkgName occurs when a package name is the blank identifier "_".
    	//
    	// Per the spec:
    	//  "The PackageName must not be the blank identifier."
    	BlankPkgName
    
    	// MismatchedPkgName occurs when a file's package name doesn't match the
    	// package name already established by other files.
    	MismatchedPkgName
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    	if err != nil {
    		return nil, err
    	}
    	if len(line) == 0 { // blank line - no continuation
    		return line, nil
    	}
    
    	if err := validateFirstLine(line); err != nil {
    		return nil, err
    	}
    
    	// Optimistically assume that we have started to buffer the next line
    	// and it starts with an ASCII letter (the next header key), or a blank
    	// line, so we can avoid copying that buffered data around in memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    			t.Errorf("%q: want %s got %s", test.s, test.jsCtx, ctx)
    		}
    	}
    
    	if nextJSCtx([]byte("   "), jsCtxRegexp) != jsCtxRegexp {
    		t.Error("Blank tokens")
    	}
    
    	if nextJSCtx([]byte("   "), jsCtxDivOp) != jsCtxDivOp {
    		t.Error("Blank tokens")
    	}
    }
    
    type jsonErrType struct{}
    
    func (e *jsonErrType) MarshalJSON() ([]byte, error) {
    	return nil, errors.New("beep */ boop </script blip <!--")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/token"
    	"internal/buildcfg"
    	. "internal/types/errors"
    )
    
    func (check *Checker) declare(scope *Scope, id *ast.Ident, obj Object, pos token.Pos) {
    	// spec: "The blank identifier, represented by the underscore
    	// character _, may be used in a declaration like any other
    	// identifier but the declaration does not introduce a new
    	// binding."
    	if obj.Name() != "_" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    				return a.(model.ServiceInfo).Source == kind.ServiceEntry
    			}))
    		}
    		services := krt.Fetch(ctx, WorkloadServices, fo...)
    		a.networkUpdateTrigger.MarkDependant(ctx) // Mark we depend on out of band a.Network
    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. src/internal/types/errors/codes.go

    	_ Code = iota
    
    	// Test is reserved for errors that only apply while in self-test mode.
    	Test
    
    	// BlankPkgName occurs when a package name is the blank identifier "_".
    	//
    	// Per the spec:
    	//  "The PackageName must not be the blank identifier."
    	//
    	// Example:
    	//  package _
    	BlankPkgName
    
    	// MismatchedPkgName occurs when a file's package name doesn't match the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top