Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 384 for Imported (0.15 sec)

  1. tests/binary/binaries_test.go

    				"the improvements are 'locked in'.", got, tt.minMb)
    		}
    	})
    }
    
    // If this flag is present, it means "testing" was imported by code that is built by the binary
    var denylistedFlags = []string{
    	"--test.memprofilerate",
    }
    
    func runBinariesTest(t *testing.T, f func(t *testing.T, name string)) {
    	t.Helper()
    	if *releasedir == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val dslMetaData by tasks.registering(ExtractDslMetaDataTask::class) {
        source(gradleApiSources)
        destinationFile = generatedBinFileFor("dsl-meta-data.bin")
    }
    
    // List of packages that are imported by default in Gradle build scripts
    val defaultImports = tasks.register("defaultImports", GenerateDefaultImports::class) {
        metaDataFile = dslMetaData.flatMap(ExtractDslMetaDataTask::getDestinationFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/testing/internal/testdeps/deps.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package testdeps provides access to dependencies needed by test execution.
    //
    // This package is imported by the generated main package, which passes
    // TestDeps into testing.Main. This allows tests to use packages at run time
    // without making those packages direct dependencies of package testing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, the "deleted" dependency contains an imported package, but
    # Go 1.16 selects a higher version (in which that package has been deleted).
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:no-import-files'
                contextualLabel == 'Problem: In version catalog testLibs, no files are resolved to be imported.'
                details == 'The imported dependency doesn\'t resolve into any file'
                solutions == [ 'Check the import statement, it should resolve into a single file' ]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/background-tasks.md

    ## Technical Details
    
    The class `BackgroundTasks` comes directly from <a href="https://www.starlette.io/background/" class="external-link" target="_blank">`starlette.background`</a>.
    
    It is imported/included directly into FastAPI so that you can import it from `fastapi` and avoid accidentally importing the alternative `BackgroundTask` (without the `s` at the end) from `starlette.background`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typexpr.go

    		}()
    	}
    
    	switch e := e0.(type) {
    	case *syntax.BadExpr:
    		// ignore - error reported before
    
    	case *syntax.Name:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    			return typ
    		case invalid:
    			// ignore - error reported before
    		case novalue:
    			check.errorf(&x, NotAType, "%s used as type", &x)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/go/types/typexpr.go

    			}
    		}()
    	}
    
    	switch e := e0.(type) {
    	case *ast.BadExpr:
    		// ignore - error reported before
    
    	case *ast.Ident:
    		var x operand
    		check.ident(&x, e, def, true)
    
    		switch x.mode {
    		case typexpr:
    			typ := x.typ
    			setDefType(def, typ)
    			return typ
    		case invalid:
    			// ignore - error reported before
    		case novalue:
    			check.errorf(&x, NotAType, "%s used as type", &x)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    	*s.Extra = t
    	return t
    }
    
    // WasmImport represents a WebAssembly (WASM) imported function with
    // parameters and results translated into WASM types based on the Go function
    // declaration.
    type WasmImport struct {
    	// Module holds the WASM module name specified by the //go:wasmimport
    	// directive.
    	Module string
    	// Name holds the WASM imported function name specified by the
    	// //go:wasmimport directive.
    	Name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    	for n := range seen {
    		// We should never have to update the underlying type of an imported type;
    		// those underlying types should have been resolved during the import.
    		// Also, doing so would lead to a race condition (was go.dev/issue/31749).
    		// Do this check always, not just in debug mode (it's cheap).
    		if n.obj.pkg != check.pkg {
    			panic("imported type with unresolved underlying type")
    		}
    		n.underlying = u
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top