Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for bland (0.25 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    					if x, err := constraint.Parse(msg); err == nil {
    						p.goVersion = constraint.GoVersion(x)
    					}
    				}
    				if pragh != nil {
    					p.pragma = pragh(p.posAt(line, col+2), p.scanner.blank, text, p.pragma) // +2 to skip over // or /*
    				}
    			}
    		},
    		directives,
    	)
    
    	p.base = file
    	p.first = nil
    	p.errcnt = 0
    	p.pragma = nil
    
    	p.fnest = 0
    	p.xnest = 0
    	p.indent = nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ppc64/ssa.go

    	case ssa.OpPPC64LoweredNilCheck:
    		if buildcfg.GOOS == "aix" {
    			// CMP Rarg0, $0
    			// BNE 2(PC)
    			// STW R0, 0(R0)
    			// NOP (so the BNE has somewhere to land)
    
    			// CMP Rarg0, $0
    			p := s.Prog(ppc64.ACMP)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = v.Args[0].Reg()
    			p.To.Type = obj.TYPE_CONST
    			p.To.Offset = 0
    
    			// BNE 2(PC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    		if !bytes.HasPrefix(line, prefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. go.sum

    github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84=
    github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
    github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
    github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		}},
    		{`package p3; var _ = f(); func f() int { return 1 }`, []string{
    			"_ = f()", // blank var
    		}},
    		{`package p4; var (a = 0; x = y; y = z; z = 0)`, []string{
    			"a = 0", "z = 0", "y = z", "x = y",
    		}},
    		{`package p5; var (a, _ = m[0]; m map[int]string)`, []string{
    			"a, _ = m[0]", // blank var
    		}},
    		{`package p6; var a, b = f(); func f() (_, _ int) { return z, z }; var z = 0`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    		// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    		// before the signal stack is set, as glibc doesn't allow us to block
    		// SIGSETXID. So a signal may land on the current stack and clobber
    		// the content below the SP. We store the LR again after the SP is
    		// decremented.
    		prologue = obj.Appendp(prologue, newprog)
    		prologue.As = AMOV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // mutually exclusive properties. If one is set, the other must be unset.
      //
      // A single parameter used for all admission requests can be configured
      // by setting the `name` field, leaving `selector` blank, and setting namespace
      // if `paramKind` is namespace-scoped.
      optional string name = 1;
    
      // namespace is the namespace of the referenced resource. Allows limiting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		}},
    		{`package p3; var _ = f(); func f() int { return 1 }`, []string{
    			"_ = f()", // blank var
    		}},
    		{`package p4; var (a = 0; x = y; y = z; z = 0)`, []string{
    			"a = 0", "z = 0", "y = z", "x = y",
    		}},
    		{`package p5; var (a, _ = m[0]; m map[int]string)`, []string{
    			"a, _ = m[0]", // blank var
    		}},
    		{`package p6; var a, b = f(); func f() (_, _ int) { return z, z }; var z = 0`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	// mutually exclusive properties. If one is set, the other must be unset.
    	//
    	// A single parameter used for all admission requests can be configured
    	// by setting the `name` field, leaving `selector` blank, and setting namespace
    	// if `paramKind` is namespace-scoped.
    	//
    	// +optional
    	Name string
    
    	// namespace is the namespace of the referenced resource. Allows limiting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. src/net/http/request.go

    		return err
    	}
    	if trace != nil && trace.WroteHeaderField != nil {
    		trace.WroteHeaderField("Host", []string{host})
    	}
    
    	// Use the defaultUserAgent unless the Header contains one, which
    	// may be blank to not send the header.
    	userAgent := defaultUserAgent
    	if r.Header.has("User-Agent") {
    		userAgent = r.Header.Get("User-Agent")
    	}
    	if userAgent != "" {
    		userAgent = headerNewlineToSpace.Replace(userAgent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top