Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 130 for const1 (0.26 sec)

  1. src/syscall/zerrors_linux_loong64.go

    // mkerrors.sh
    // Code generated by the command above; DO NOT EDIT.
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- _const.go
    
    package syscall
    
    const (
    	AF_ALG                            = 0x26
    	AF_APPLETALK                      = 0x5
    	AF_ASH                            = 0x12
    	AF_ATMPVC                         = 0x8
    	AF_ATMSVC                         = 0x14
    	AF_AX25                           = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    	"github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/kms"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/policy"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    const (
    	objectLockConfig        = "object-lock.xml"
    	bucketTaggingConfig     = "tagging.xml"
    	bucketReplicationConfig = "replication.xml"
    
    	xMinIOErrCodeHeader = "x-minio-error-code"
    	xMinIOErrDescHeader = "x-minio-error-desc"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    import (
    	"fmt"
    	"go/build/constraint"
    	"io"
    	"strconv"
    	"strings"
    )
    
    const debug = false
    const trace = false
    
    type parser struct {
    	file  *PosBase
    	errh  ErrorHandler
    	mode  Mode
    	pragh PragmaHandler
    	scanner
    
    	base      *PosBase // current position base
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. src/time/format.go

    // millisecond precision.
    //
    // Some valid layouts are invalid time values for time.Parse, due to formats
    // such as _ for space padding and Z for zone information.
    const (
    	Layout      = "01/02 03:04:05PM '06 -0700" // The reference time, in numerical order.
    	ANSIC       = "Mon Jan _2 15:04:05 2006"
    	UnixDate    = "Mon Jan _2 15:04:05 MST 2006"
    	RubyDate    = "Mon Jan 02 15:04:05 -0700 2006"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation.go

    // .status.completedIndexes.
    const maxParallelismForIndexedJob = 100000
    
    // maxFailedIndexesForIndexedJob is the maximum number of failed indexes that
    // an Indexed Job is allowed to have. This threshold allows to cap the length of
    // .status.completedIndexes and .status.failedIndexes.
    const maxFailedIndexesForIndexedJob = 100_000
    
    const (
    	completionsSoftLimit                    = 100_000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    // variable composition is not allowed, for example, when validating MatchConditions.
    // strictStatelessCELCompiler is a cel Compiler that enforces strict cost enforcement.
    // nonStrictStatelessCELCompiler is a cel Compiler that does not enforce strict cost enforcement.
    var strictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	Algorithm pkix.AlgorithmIdentifier
    	PublicKey asn1.BitString
    }
    
    // RFC 5280,  4.2.1.1
    type authKeyId struct {
    	Id []byte `asn1:"optional,tag:0"`
    }
    
    type SignatureAlgorithm int
    
    const (
    	UnknownSignatureAlgorithm SignatureAlgorithm = iota
    
    	MD2WithRSA  // Unsupported.
    	MD5WithRSA  // Only supported for signing, not verification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    	"k8s.io/kubernetes/pkg/kubelet/util/sliceutils"
    	netutils "k8s.io/utils/net"
    )
    
    const (
    	testKubeletHostname = "hostname"
    )
    
    // TODO(mtaufen): below is ported from the old kubelet_node_status_test.go code, potentially add more test coverage for NodeAddress setter in future
    func TestNodeAddress(t *testing.T) {
    	type cloudProviderType int
    	const (
    		cloudProviderLegacy cloudProviderType = iota
    		cloudProviderExternal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	}
    	n, err = lw.w.Write(p)
    	lw.remain -= n
    	return n, err
    }
    
    func TestMarshalWriteErrors(t *testing.T) {
    	var buf bytes.Buffer
    	const writeCap = 1024
    	w := &limitedBytesWriter{&buf, writeCap}
    	enc := NewEncoder(w)
    	var err error
    	var i int
    	const n = 4000
    	for i = 1; i <= n; i++ {
    		err = enc.Encode(&Passenger{
    			Name:   []string{"Alice", "Bob"},
    			Weight: 5,
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    	"k8s.io/kubernetes/pkg/kubelet/cm/containermap"
    	"k8s.io/kubernetes/pkg/kubelet/cm/memorymanager/state"
    	"k8s.io/kubernetes/pkg/kubelet/cm/topologymanager"
    )
    
    const (
    	hugepages2M = "hugepages-2Mi"
    	hugepages1G = "hugepages-1Gi"
    )
    
    const policyTypeMock policyType = "mock"
    
    type testMemoryManager struct {
    	description                string
    	machineInfo                cadvisorapi.MachineInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
Back to top