Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,806 for consts (0.28 sec)

  1. src/runtime/internal/sys/consts.go

    const StackGuardMultiplier = 1 + goos.IsAix + isRace
    
    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = goarch.DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = goarch.PCQuantum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    DATA consts<>+0x48(SB)/8, $0x0102030005060704
    DATA consts<>+0x50(SB)/8, $0x6170786561707865
    DATA consts<>+0x58(SB)/8, $0x6170786561707865
    DATA consts<>+0x60(SB)/8, $0x3320646e3320646e
    DATA consts<>+0x68(SB)/8, $0x3320646e3320646e
    DATA consts<>+0x70(SB)/8, $0x79622d3279622d32
    DATA consts<>+0x78(SB)/8, $0x79622d3279622d32
    DATA consts<>+0x80(SB)/8, $0x6b2065746b206574
    DATA consts<>+0x88(SB)/8, $0x6b2065746b206574
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/go/doc/filter.go

    		if matchDecl(td.Decl, f) {
    			n = 1
    		} else {
    			// type name doesn't match, but we may have matching consts, vars, factories or methods
    			td.Consts = filterValues(td.Consts, f)
    			td.Vars = filterValues(td.Vars, f)
    			td.Funcs = filterFuncs(td.Funcs, f)
    			td.Methods = filterFuncs(td.Methods, f)
    			n += len(td.Consts) + len(td.Vars) + len(td.Funcs) + len(td.Methods)
    		}
    		if n > 0 {
    			a[w] = td
    			w++
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/go/doc/testdata/template.txt

    {{synopsis .Doc}}
    PACKAGE {{.Name}}
    
    IMPORTPATH
    	{{.ImportPath}}
    
    {{with .Imports}}IMPORTS
    {{range .}}	{{.}}
    {{end}}
    {{end}}{{/*
    
    */}}FILENAMES
    {{range .Filenames}}	{{.}}
    {{end}}{{/*
    
    */}}{{with .Consts}}
    CONSTANTS
    {{range .}}	{{synopsis .Doc}}
    	{{node .Decl $.FSet}}
    
    {{end}}{{end}}{{/*
    
    */}}{{with .Vars}}
    VARIABLES
    {{range .}}	{{synopsis .Doc}}
    	{{node .Decl $.FSet}}
    
    {{end}}{{end}}{{/*
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue20185.go

    // license that can be found in the LICENSE file.
    
    // Issue 20185: type switching on untyped values (e.g. nil or consts)
    // caused an internal compiler error.
    
    package p
    
    func F() {
    	switch t := nil.(type) { // ERROR "cannot type switch on non-interface value|not an interface"
    	default:
    		_ = t
    	}
    }
    
    const x = 1
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 581 bytes
    - Viewed (0)
  6. pkg/kube/kclient/crdwatcher_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kclient_test
    
    import (
    	"testing"
    
    	"go.uber.org/atomic"
    	"sigs.k8s.io/gateway-api/pkg/consts"
    
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/doc/pkg.go

    	constructor := make(map[*doc.Func]bool)
    	for _, typ := range docPkg.Types {
    		docPkg.Consts = append(docPkg.Consts, typ.Consts...)
    		docPkg.Vars = append(docPkg.Vars, typ.Vars...)
    		docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
    		if isExported(typ.Name) {
    			for _, value := range typ.Consts {
    				typedValue[value] = true
    			}
    			for _, value := range typ.Vars {
    				typedValue[value] = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/syscall/types_illumos_amd64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build illumos
    
    // Illumos consts not present on Solaris. These are added manually rather than
    // auto-generated by mkerror.sh
    
    package syscall
    
    const (
    	LOCK_EX = 0x2
    	LOCK_NB = 0x4
    	LOCK_SH = 0x1
    	LOCK_UN = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 379 bytes
    - Viewed (0)
  9. src/go/doc/doc.go

    		Notes:      r.notes,
    		Bugs:       noteBodies(r.notes["BUG"]),
    		Consts:     sortedValues(r.values, token.CONST),
    		Types:      sortedTypes(r.types, mode&AllMethods != 0),
    		Vars:       sortedValues(r.values, token.VAR),
    		Funcs:      sortedFuncs(r.funcs, true),
    
    		importByName: r.importByName,
    		syms:         make(map[string]bool),
    	}
    
    	p.collectValues(p.Consts)
    	p.collectValues(p.Vars)
    	p.collectTypes(p.Types)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. pkg/kube/kclient/crdwatcher.go

    	// Setup a filter
    	crd := t.(*metav1.PartialObjectMetadata)
    	mv, f := minimumCRDVersions[crd.Name]
    	if !f {
    		return true
    	}
    	bv, f := crd.Annotations[consts.BundleVersionAnnotation]
    	if !f {
    		log.Errorf("CRD %v expected to have a %v annotation, but none found; ignoring", crd.Name, consts.BundleVersion)
    		return false
    	}
    	fv, err := semver.NewVersion(bv)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top