Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 425 for qint (0.06 sec)

  1. scripts/lint.sh

    Sebastián Ramírez <******@****.***> 1714435394 -0700
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 00:03:14 UTC 2024
    - 125 bytes
    - Viewed (0)
  2. src/math/big/int.go

    	"math/rand"
    	"strings"
    )
    
    // An Int represents a signed multi-precision integer.
    // The zero value for an Int represents the value 0.
    //
    // Operations always take pointer arguments (*Int) rather
    // than Int values, and each unique Int value requires
    // its own unique *Int pointer. To "copy" an Int value,
    // an existing (or newly allocated) Int must be set to
    // a new value using the [Int.Set] method; shallow copies
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    */
    
    package sets
    
    // Int is a set of ints, implemented via map[int]struct{} for minimal memory consumption.
    //
    // Deprecated: use generic Set instead.
    // new ways:
    // s1 := Set[int]{}
    // s2 := New[int]()
    type Int map[int]Empty
    
    // NewInt creates a Int from a list of values.
    func NewInt(items ...int) Int {
    	return Int(New[int](items...))
    }
    
    // IntKeySet creates a Int from a keys of a map[int](? extends interface{}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  4. hack/golangci-strict.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. hack/golangci.yaml

              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
              #    _output/local/bin/golangci-lint cache clean
              
              # At this point we don't enforce the usage structured logging calls except in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. common/config/license-lint.yml

    Istio Automation <******@****.***> 1674674780 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 19:26:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. .github/workflows/go-lint.yml

            if: matrix.os == 'Windows'
            env:
              CGO_ENABLED: 0
              GO111MODULE: on
            run: |
              Set-MpPreference -DisableRealtimeMonitoring $true
              netsh int ipv4 set dynamicport tcp start=60000 num=61000
              go build --ldflags="-s -w" -o %GOPATH%\bin\minio.exe
              go test -v --timeout 120m ./...
          - name: Build on ${{ matrix.os }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 22:29:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. hack/golangci.yaml.in

    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. common/Makefile.common.mk

    lint-licenses:
    	@if test -d licenses; then license-lint --config common/config/license-lint.yml; fi
    
    lint-all: lint-dockerfiles lint-scripts lint-yaml lint-helm lint-copyright-banner lint-go lint-python lint-markdown lint-sass lint-typescript lint-licenses
    
    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. test/typeparam/struct.go

    	v T
    }
    
    type S1 struct {
    	E[int]
    	v string
    }
    
    type Eint = E[int]
    type Ebool = E[bool]
    type Eint2 = Eint
    
    type S2 struct {
    	Eint
    	Ebool
    	v string
    }
    
    type S3 struct {
    	*E[int]
    }
    
    func main() {
    	s1 := S1{Eint{2}, "foo"}
    	if got, want := s1.E.v, 2; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	s2 := S2{Eint{3}, Ebool{true}, "foo"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 801 bytes
    - Viewed (0)
Back to top