Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 434 for imposes (0.15 sec)

  1. src/go/internal/gccgoimporter/parser.go

    // add it to the p.imports map.
    func (p *parser) getPkg(pkgpath, name string) *types.Package {
    	// package unsafe is not in the imports map - handle explicitly
    	if pkgpath == "unsafe" {
    		return types.Unsafe
    	}
    	pkg := p.imports[pkgpath]
    	if pkg == nil && name != "" {
    		pkg = types.NewPackage(pkgpath, name)
    		p.imports[pkgpath] = pkg
    	}
    	return pkg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    	interfaceType
    	typeParamType
    	instanceType
    	unionType
    )
    
    // iImportData imports a package from the serialized package data
    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // block waiting for access to some other project, which means it can proceed even if some other thread is waiting for a project lock it
                            // holds without causing a deadlock. This in turn implies that this thread does not need to release the project locks it holds while
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationCppInteroperabilityIntegrationTest.groovy

            def logger = new CppLoggerWithGreeterApi()
            def cppGreeter = new CppGreeterFunctionUsesLoggerApi()
            String[] imports = ["cppGreeter", "logger"]
            def app = new SwiftMainWithCppDep(cppGreeter, imports)
    
            given:
            buildFile << """
                project(':app') {
                    apply plugin: 'swift-application'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    (which implies that it may not return a string, slice, channel, and so
    forth). A Go function called by C code may take C pointers as arguments,
    and it may store non-pointer data, C pointers, or Go pointers to pinned
    memory through those pointers. It may not store a Go pointer to unpinned
    memory in memory pointed to by a C pointer (which again, implies that it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. docs/fr/docs/contributing.md

    </div>
    
    Il effectuera également un tri automatique de touts vos imports.
    
    Pour qu'il puisse les trier correctement, vous devez avoir FastAPI installé localement dans votre environnement, avec la commande dans la section ci-dessus en utilisant `--symlink` (ou `--pth-file` sous Windows).
    
    ### Formatage des imports
    
    Il existe un autre script qui permet de formater touts les imports et de s'assurer que vous n'avez pas d'imports inutilisés :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    // for a sidecar improves performance as we no longer need to compute this
    // list for every sidecar. We simply have to match a sidecar to a
    // SidecarScope. Note that this is not the same as public/private scoped
    // services. The list of services seen by every sidecar scope (namespace
    // wide or per workload) depends on the imports, the listeners, and other
    // settings.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api.go

    	// Otherwise SizesFor("gc", "amd64") is used instead.
    	Sizes Sizes
    
    	// If DisableUnusedImportCheck is set, packages are not checked
    	// for unused imports.
    	DisableUnusedImportCheck bool
    
    	// If a non-empty ErrorURL format string is provided, it is used
    	// to format an error URL link that is appended to the first line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

            taskGraphCalculations[2].details.buildPath == ":b"
            taskGraphCalculations[2].result.requestedTaskPaths == [":compileJava", ":jar"]
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "exposes task plan details"() {
            file("included-build").mkdir()
            file("included-build/settings.gradle")
            file("included-build/build.gradle") << """
                apply plugin:'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/go/types/api.go

    	// Otherwise SizesFor("gc", "amd64") is used instead.
    	Sizes Sizes
    
    	// If DisableUnusedImportCheck is set, packages are not checked
    	// for unused imports.
    	DisableUnusedImportCheck bool
    
    	// If a non-empty _ErrorURL format string is provided, it is used
    	// to format an error URL link that is appended to the first line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top