Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 560 for impacted (0.17 sec)

  1. cmd/data-scanner.go

    		}
    
    		scanFolder := func(folder cachedFolder) {
    			if contextCanceled(ctx) {
    				return
    			}
    			dst := into
    			if !into.Compacted {
    				dst = &dataUsageEntry{Compacted: false}
    			}
    			if err := f.scanFolder(ctx, folder, dst); err != nil {
    				return
    			}
    			if !into.Compacted {
    				h := dataUsageHash(folder.name)
    				into.addChild(h)
    				// We scanned a folder, optionally send update.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
        <artifactId>imported</artifactId>
        <version>different-version</version>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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