Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for noImports (0.3 sec)

  1. src/go/internal/srcimporter/srcimporter_test.go

    	}
    
    	nimports := 0
    	hasGoFiles := false
    	for _, f := range list {
    		if f.IsDir() {
    			n, abort := walkDir(t, filepath.Join(path, f.Name()), endTime)
    			nimports += n
    			if abort {
    				return nimports, true
    			}
    		} else if strings.HasSuffix(f.Name(), ".go") {
    			hasGoFiles = true
    		}
    	}
    
    	if hasGoFiles {
    		doImport(t, path, "")
    		nimports++
    	}
    
    	return nimports, false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/names/names.go

    	ImageLocality                   = "ImageLocality"
    	InterPodAffinity                = "InterPodAffinity"
    	NodeAffinity                    = "NodeAffinity"
    	NodeName                        = "NodeName"
    	NodePorts                       = "NodePorts"
    	NodeResourcesBalancedAllocation = "NodeResourcesBalancedAllocation"
    	NodeResourcesFit                = "NodeResourcesFit"
    	NodeUnschedulable               = "NodeUnschedulable"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 14:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    				COMMIT
    				`),
    			output: map[string][]string{
    				"filter": {
    					`*filter`,
    					`:KUBE-SERVICES - [0:0]`,
    					`:KUBE-EXTERNAL-SERVICES - [0:0]`,
    					`:KUBE-FORWARD - [0:0]`,
    					`:KUBE-NODEPORTS - [0:0]`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/portallocator/metrics.go

    	nodePortAllocated = metrics.NewGauge(
    		&metrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "allocated_ports",
    			Help:           "Gauge measuring the number of allocated NodePorts for Services",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    	// nodePortAvailable indicates the amount of ports available by NodePort Service.
    	nodePortAvailable = metrics.NewGauge(
    		&metrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 06:44:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/registry.go

    		imagelocality.Name:                   imagelocality.New,
    		tainttoleration.Name:                 runtime.FactoryAdapter(fts, tainttoleration.New),
    		nodename.Name:                        nodename.New,
    		nodeports.Name:                       nodeports.New,
    		nodeaffinity.Name:                    nodeaffinity.New,
    		podtopologyspread.Name:               runtime.FactoryAdapter(fts, podtopologyspread.New),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/testing/defaults/defaults.go

    			{Name: names.PrioritySort},
    			{Name: names.NodeUnschedulable},
    			{Name: names.NodeName},
    			{Name: names.TaintToleration, Weight: 3},
    			{Name: names.NodeAffinity, Weight: 2},
    			{Name: names.NodePorts},
    			{Name: names.NodeResourcesFit, Weight: 1},
    			{Name: names.VolumeRestrictions},
    			{Name: names.NodeVolumeLimits},
    			{Name: names.VolumeBinding},
    			{Name: names.VolumeZone},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_fallback.txt

    env GO111MODULE=on
    
    [!net:golang.org] skip
    [!net:proxy.golang.org] skip
    
    env GOPROXY=https://proxy.golang.org,direct
    env GOSUMDB=off
    
    go get -x -v golang.org/x/tools/cmd/goimports
    stderr '# get https://proxy.golang.org/golang.org/x/tools/@v/list'
    ! stderr '# get https://golang.org'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 315 bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/not-port.yaml.tmpl

    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-allow
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
          - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 307 bytes
    - Viewed (0)
  9. common/config/.golangci-format.yml

    linters:
      disable-all: true
      enable:
      - goimports
      - gofumpt
      - gci
      fast: false
    linters-settings:
      gci:
        sections:
          - standard # Captures all standard packages if they do not match another section.
          - default # Contains all imports that could not be matched to another section type.
          - prefix(istio.io/) # Groups all imports with the specified Prefix.
      goimports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. .golangci.yml

        checks: ['all', '-ST1005', '-ST1000', '-SA4000', '-SA9004', '-SA1019', '-SA1008', '-U1000', '-ST1016']
    
    linters:
      disable-all: true
      enable:
        - durationcheck
        - gocritic
        - gofumpt
        - goimports
        - gomodguard
        - govet
        - ineffassign
        - misspell
        - revive
        - staticcheck
        - tenv
        - typecheck
        - unconvert
        - unused
    
    issues:
      exclude-use-default: false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 02:17:03 UTC 2023
    - 689 bytes
    - Viewed (0)
Back to top