Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for impacted (0.13 sec)

  1. pkg/structured/structured.go

    type Error struct {
    	// MoreInfo is additional information about the error e.g. a link to context describing the context for the error.
    	MoreInfo string
    	// Impact is the likely impact of the error on system function e.g. "Proxies are unable to communicate with Istiod."
    	Impact string
    	// Action is the next step the user should take e.g. "Open an issue or bug report."
    	Action string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/time/tzdata/tzdata.go

    // Package tzdata provides an embedded copy of the timezone database.
    // If this package is imported anywhere in the program, then if
    // the time package cannot find tzdata files on the system,
    // it will use this embedded information.
    //
    // Importing this package will increase the size of a program by about
    // 450 KB.
    //
    // This package should normally be imported by a program's main package,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue43109.go

    // Copyright 2022 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.
    
    // Ensure there is no "imported and not used" error
    // if a package wasn't imported in the first place.
    
    package p
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 325 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testplugin/altpath/testdata/plugin-mismatch/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // // No C code required.
    import "C"
    
    // The common package imported here does not match the common package
    // imported by plugin1. A program that attempts to load plugin1 and
    // plugin-mismatch should produce an error.
    import "testplugin/common"
    
    func ReadCommonX() int {
    	return common.X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 466 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/vendor_import_wrong.txt

    # Wrong import path
    env GO111MODULE=off
    ! go build vend/x/invalid
    stderr 'must be imported as foo'
    
    env GO111MODULE=
    cd vend/x/invalid
    ! go build vend/x/invalid
    stderr 'must be imported as foo'
    
    -- vend/x/invalid/go.mod --
    module vend/x/invalid
    
    go 1.16
    
    -- vend/x/invalid/invalid.go --
    package invalid
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 340 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_cgo_compiled_importmap.txt

    	# Control case: the explicitly-imported package "sync" is a test variant,
    	# because "sync" depends on "runtime".
    stdout '"sync \[runtime\.test\]"'
    ! stdout '"sync"'
    
    	# Experiment: the implicitly-imported package "runtime/cgo" is also a test variant,
    	# because "runtime/cgo" also depends on "runtime".
    stdout '"runtime/cgo \[runtime\.test\]"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 22:26:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. src/go/ast/resolve.go

    			// import failed. Consider adjusting the logic here a bit.
    
    			// local name overrides imported package name
    			name := pkg.Name
    			if spec.Name != nil {
    				name = spec.Name.Name
    			}
    
    			// add import to file scope
    			if name == "." {
    				// merge imported scope with file scope
    				for _, obj := range pkg.Data.(*Scope).Objects {
    					p.declare(fileScope, pkgScope, obj)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/package.go

    func (pkg *Package) MarkComplete() { pkg.complete = true }
    
    // Imports returns the list of packages directly imported by
    // pkg; the list is in source order.
    //
    // If pkg was loaded from export data, Imports includes packages that
    // provide package-level objects referenced by pkg. This may be more or
    // less than the set of packages directly imported by pkg's source code.
    //
    // If pkg uses cgo and the FakeImportC configuration option
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 06 13:09:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            "replacement header dir after" | '"src/main/headers", "src/replacement-headers"'
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles only source file that imported changed header file"() {
            given:
            sourceFile << """
                #import "${otherHeaderFile.name}"
    """
            and:
            outputs.snapshot { run "mainExecutable" }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/list_issue_59905.txt

    level1a${/}pkg.go:5:2: "test/main/level1a/level2y" imported as level2x and not used
    level1a${/}pkg.go:8:39: undefined: level2y
     # test/main/level1b
    level1b${/}pkg.go:5:2: level2x redeclared in this block
    	level1b${/}pkg.go:4:2: other declaration of level2x
    level1b${/}pkg.go:5:2: "test/main/level1b/level2y" imported as level2x and not used
    level1b${/}pkg.go:8:39: undefined: level2y
    ]
    -- wanterr_61816 --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 17:34:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top