Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 666 for ximports (0.22 sec)

  1. common/config/.golangci.yml

        ignore-generated-header: false
        severity: "warning"
        confidence: 0.0
        rules:
          - name: blank-imports
          - name: context-keys-type
          - name: time-naming
          - name: var-declaration
          - name: unexported-return
          - name: errorf
          - name: context-as-argument
          - name: dot-imports
          - name: error-return
          - name: error-strings
          - name: error-naming
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See iexport.go for the export data format.
    
    package typecheck
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    // HaveInlineBody reports whether we have fn's inline body available
    // for inlining.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/import2.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 247 bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/import.go

    				// We can't resolve the import by adding mp@mv to the module graph,
    				// because the selected version of mp is already at least mv.
    				continue
    			}
    			mods = append(mods, module.Version{Path: mp, Version: mv})
    		}
    	}
    
    	// Every module path in mods is a prefix of the import path.
    	// As in QueryPattern, prefer the longest prefix that satisfies the import.
    	sort.Slice(mods, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/importC.go

    // license that can be found in the LICENSE file.
    
    package importC
    
    import "C"
    import _ /* ERROR `cannot rename import "C"` */ "C"
    import foo /* ERROR `cannot rename import "C"` */ "C"
    import . /* ERROR `cannot rename import "C"` */ "C"
    
    // Test cases extracted from issue #22090.
    
    import "unsafe"
    
    const _ C.int = 0xff // no error due to invalid constant type
    
    type T struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. test/import1.go

    // license that can be found in the LICENSE file.
    
    // Verify that import conflicts are detected by the compiler.
    // Does not compile.
    
    package main
    
    import "bufio"	// ERROR "previous|not used"
    import bufio "os"	// ERROR "redeclared|redefinition|incompatible" "imported and not used|imported as bufio and not used"
    
    import (
    	"fmt"	// ERROR "previous|not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 703 bytes
    - Viewed (0)
  7. test/import2.dir/import3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that all the types from import2.go made it
    // intact and with the same meaning, by assigning to or using them.
    
    package main
    
    import "./import2"
    
    func f3(func() func() int)
    
    func main() {
    	p.F3(p.F1)
    	p.F3(p.F2())
    	f3(p.F1)
    	f3(p.F2())
    
    	p.C1 = (chan<- (chan int))(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/imports.ir.txt

    Yan Zhulanow <******@****.***> 1692687376 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/import.golden

    )
    
    import (
    	// a block with comments
    	"errors"
    	"fmt" // for Printf
    	"io"  // for Reader
    	"log" // for Fatal
    	"math"
    )
    
    import (
    	"fmt" // for Printf
    
    	"math"
    
    	"log" // for Fatal
    
    	"errors"
    
    	"io" // for Reader
    )
    
    import (
    	// for Printf
    	"fmt"
    
    	"math"
    
    	// for Fatal
    	"log"
    
    	"errors"
    
    	// for Reader
    	"io"
    )
    
    import (
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/simple-fwd/aaa/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 222 bytes
    - Viewed (0)
Back to top