Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 300 for importPos (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

            return new TransformFixture(
                """
                import ${Inject.name};
                import ${ExecOperations.name};
                ${snippets.imports}
                """,
    
                """
                @Inject
                public abstract ExecOperations getExecOperations();
                """,
    
                snippets.body
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } else {
                foreignImports.put("", classRealmManager.getMavenApiRealm());
            }
    
            if (parent != null && imports != null) {
                for (String parentImport : imports) {
                    foreignImports.put(parentImport, parent);
                }
            }
    
            return foreignImports;
        }
    
        public <T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/timeformat/timeformat.go

    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	// Note: (time.Time).Format is a method and can be a typeutil.Callee
    	// without directly importing "time". So we cannot just skip this package
    	// when !analysisutil.Imports(pass.Pkg, "time").
    	// TODO(taking): Consider using a prepass to collect typeutil.Callees.
    
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/bigger-applications.md

    ```Python hl_lines="3" title="app/routers/items.py"
    {!../../../docs_src/bigger_applications/app/routers/items.py!}
    ```
    
    #### How relative imports work
    
    !!! tip
        If you know perfectly how imports work, continue to the next section below.
    
    A single dot `.`, like in:
    
    ```Python
    from .dependencies import get_token_header
    ```
    
    would mean:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            // These are part of the API, but not the DSL
            excludedPackages.add("org.gradle.tooling.**");
            excludedPackages.add("org.gradle.testfixtures.**");
    
            // Tweak the imports due to some inconsistencies introduced before we automated the default-imports generation
            excludedPackages.add("org.gradle.plugins.ide.eclipse.model");
            excludedPackages.add("org.gradle.plugins.ide.idea.model");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

            val trace = tracingCodeResolver(DefaultOperationGenerationId.finalEvaluation, analysisStatementFilter)
                .apply { resolve(analysisSchema, languageModel.imports, languageModel.topLevelBlock) }
                .trace
            val document = languageModel.toDocument()
            val resolution = resolutionContainer(analysisSchema, trace, document)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go

    // source: k8s.io/apimachinery/pkg/runtime/schema/generated.proto
    
    package schema
    
    import (
    	fmt "fmt"
    
    	math "math"
    
    	proto "github.com/gogo/protobuf/proto"
    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            val packages = packageHeader(tree, packageNode)
            val imports = importNodes.map { import(tree, it) }
            val statements = scriptNodes.map { statement(tree, it) }
    
            val headerFailures = collectFailures(packages + imports)
    
            return LanguageTreeResult(
                imports = imports.filterIsInstance<Element<Import>>().map { it.element },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/atomicfu/atomicfu-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/fir-plugin-prototype/testData" />
            <option value="$PROJECT_DIR$/plugins/imports-dumper/testData" />
            <option value="$PROJECT_DIR$/plugins/jvm-abi-gen/testData" />
            <option value="$PROJECT_DIR$/plugins/kapt3/kapt3-base/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// analysis passes (different analyzers, same package).
    	Requires []*Analyzer
    
    	// ResultType is the type of the optional result of the Run function.
    	ResultType reflect.Type
    
    	// FactTypes indicates that this analyzer imports and exports
    	// Facts of the specified concrete types.
    	// An analyzer that uses facts may assume that its import
    	// dependencies have been similarly analyzed before it runs.
    	// Facts must be pointers.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top