Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Sundaram (0.45 sec)

  1. common/config/.golangci.yml

            # - name: bare-return
            # - name: flag-parameter
            # - name: unhandled-error
            # - name: if-return
      unparam:
        # Inspect exported functions, default is false. Set to true if no external program/library imports your code.
        # XXX: if you enable this setting, unparam will report a lot of false-positives in text editors:
    Others
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Apr 05 00:54:21 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  2. .golangci.yml

    linters:
      enable:
        - cyclop
        - exportloopref
        - gocritic
        - gosec
        - ineffassign
        - misspell
        - prealloc
        - unconvert
        - unparam
        - goimports
        - whitespace
    
    linters-settings:
      whitespace:
        multi-func: true
      goimports:
    Others
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Sat Nov 05 00:37:37 GMT 2022
    - 291 bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/ztunnelserver.go

    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    // nolint: unparam
    func (z *ztunnelServer) handleConn(ctx context.Context, conn *ZtunnelConnection) error {
    	defer conn.Close()
    
    	context.AfterFunc(ctx, func() {
    		log.Debug("context cancelled - closing conn")
    		conn.Close()
    	})
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest_shared_test.go

    }
    
    // runManifestCommands runs all testedManifestCmds commands with the given input IOP file, flags and chartSource.
    // It returns an ObjectSet for each cmd type.
    // nolint: unparam
    func runManifestCommands(inFile, flags string, chartSource chartSourceType, fileSelect []string) (map[cmdType]*ObjectSet, error) {
    	out := make(map[cmdType]*ObjectSet)
    	for _, cmd := range testedManifestCmds {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 20 22:39:28 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    				}
    				if diff != "" {
    					t.Fatalf("%s: got:\n%s\nwant:\n%s\n(-got, +want)\n%s\n", tt.desc, "", "", diff)
    				}
    				t.Fatalf(cmp.Diff(got, want))
    			}
    		})
    	}
    }
    
    // nolint: unparam
    func generateManifest(inFile, flags string, chartSource chartSourceType, fileSelect []string) (string, object.K8sObjects, error) {
    	inPath := filepath.Join(testDataDir, "input", inFile+".yaml")
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.19.md

    - gotest.tools/gotestsum: v0.3.5
    - grpc.go4.org: 11d0a25
    - k8s.io/klog: v1.0.0
    - k8s.io/repo-infra: v0.0.1-alpha.1
    - mvdan.cc/interfacer: c200402
    - mvdan.cc/lint: adc824a
    - mvdan.cc/unparam: fbb5962
    - sourcegraph.com/sqs/pbtypes: d3ebe8f
    
    
    ## Dependencies
    
    ### Added
    - cloud.google.com/go/bigquery: v1.0.1
    - cloud.google.com/go/datastore: v1.0.0
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Wed Jan 05 05:42:32 GMT 2022
    - 489.7K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // tui : 2014-07-03 TUI AG
    tui
    
    // tunes : 2015-02-26 Amazon Registry Services, Inc.
    tunes
    
    // tushu : 2014-12-18 Amazon Registry Services, Inc.
    tushu
    
    // tvs : 2015-02-19 T V SUNDRAM IYENGAR  & SONS LIMITED
    tvs
    
    // ubank : 2015-08-20 National Australia Bank Limited
    ubank
    
    // ubs : 2014-12-11 UBS AG
    ubs
    
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  8. CHANGELOG/CHANGELOG-1.17.md

    - gopkg.in/cheggaaa/pb.v1: v1.0.25
    - gopkg.in/resty.v1: v1.12.0
    - grpc.go4.org: 11d0a25
    - k8s.io/system-validators: v1.0.4
    - mvdan.cc/interfacer: c200402
    - mvdan.cc/lint: adc824a
    - mvdan.cc/unparam: fbb5962
    - sourcegraph.com/sqs/pbtypes: d3ebe8f
    
    #### Changed
    - github.com/Azure/azure-sdk-for-go: v32.5.0+incompatible → v35.0.0+incompatible
    - github.com/Microsoft/go-winio: v0.4.11 → v0.4.14
    Plain Text
    - Registered: Fri Apr 19 09:05:10 GMT 2024
    - Last Modified: Thu Jan 28 10:44:33 GMT 2021
    - 346.2K bytes
    - Viewed (1)
Back to top