Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 249 for bland (0.05 sec)

  1. 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)
  2. src/cmd/vendor/rsc.io/markdown/code.go

    	var n int
    	if t := s; t.trimFence(&fence, &info, &n) && strings.HasPrefix(fence, c.fence) && info == "" {
    		return line{}, false
    	}
    	if !s.trimSpace(c.n, c.n, false) {
    		p.corner = true // goldmark mishandles fenced blank lines with not enough spaces
    		s.trimSpace(0, c.n, false)
    	}
    	c.text = append(c.text, s.string())
    	p.corner = p.corner || s.nl != '\n' // goldmark does not normalize to \n
    	return line{}, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/go/types/exprstring.go

    		// types of interface methods consist of signatures only
    		if sig, _ := f.Type.(*ast.FuncType); sig != nil && iface {
    			writeSigExpr(buf, sig)
    			continue
    		}
    
    		// named fields are separated with a blank from the field type
    		if len(f.Names) > 0 {
    			buf.WriteByte(' ')
    		}
    
    		WriteExpr(buf, f.Type)
    
    		// ignore tag
    	}
    }
    
    func writeIdentList(buf *bytes.Buffer, list []*ast.Ident) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 19:31:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/encoding/binary/binary.go

    // any other non-zero byte is decoded as true.
    // When reading into structs, the field data for fields with
    // blank (_) field names is skipped; i.e., blank field names
    // may be used for padding.
    // When reading into a struct, all non-blank fields must be exported
    // or Read may panic.
    //
    // The error is [io.EOF] only if no bytes were read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java

            final String url = urlQueue.getUrl();
            if (StringUtil.isBlank(url)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("URL is a blank: {}", url);
                }
                return false;
            }
    
            // check it in queue
            for (final UrlQueue<Long> urlInQueue : urlQueueList) {
                if (url.equals(urlInQueue.getUrl())) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    					break
    				}
    				inStar = false
    				continue
    			}
    			line, inStar = stringsCutPrefix(line, "/*")
    			if !inStar {
    				break
    			}
    		}
    		if line != "" {
    			// Found non-comment non-blank line.
    			// Ends space for valid //go:build comments,
    			// but also ends the fraction of the file we can
    			// reliably parse. From this point on we might
    			// incorrectly flag "comments" inside multiline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/go.mod

    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/NYTimes/gziphandler v1.1.1 // indirect
    	github.com/antlr4-go/antlr/v4 v4.13.0 // indirect
    	github.com/beorn7/perks v1.0.1 // indirect
    	github.com/blang/semver/v4 v4.0.0 // indirect
    	github.com/cenkalti/backoff/v4 v4.2.1 // indirect
    	github.com/cespare/xxhash/v2 v2.2.0 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-goboring.sh

    int main() {
    int ret = 0;
    #include "goboringcrypto.x"
    return ret;
    }
    EOF
    
    cat >boringx.awk <<'EOF'
    BEGIN {
    	exitcode = 0
    }
    
    # Ignore comments, #includes, blank lines.
    /^\/\// || /^#/ || NF == 0 { next }
    
    # Ignore unchecked declarations.
    /\/\*unchecked/ { next }
    
    # Check enum values.
    !enum && ($1 == "enum" || $2 == "enum") && $NF == "{" {
    	enum = 1
    	next
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top