Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 475 for qint (0.28 sec)

  1. hack/verify-golangci-lint-pr-hints.sh

    # golangci-lint. It does nothing when invoked as part of a normal "make
    # verify".
    
    set -o nounset
    set -o pipefail
    
    if [ ! "${PULL_NUMBER:-}" ]; then
      echo 'Not testing anything because this is not a pull request.'
      exit 0
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:14:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. hack/update-golangci-lint-config.sh

    # limitations under the License.
    
    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. .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)
  10. 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)
Back to top