Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,644 for Imported (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/ImplicitGroovyImportsIntegrationTest.groovy

    package org.gradle.groovy.scripts
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ImplicitGroovyImportsIntegrationTest extends AbstractIntegrationSpec {
    
        def "@Inject annotation can be imported by default"() {
            buildFile << """
                class Foo extends DefaultTask {
                    @Inject
                    Foo(ObjectFactory factory) {
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 13 10:03:33 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    
    # For this module, Go 1.16 selects the same versions of all explicit dependencies
    # as Go 1.17 does. However, Go 1.16 selects a higher version of an *implicit*
    # dependency, imported by a test of one of the (external) imported packages.
    # As a result, Go 1.16 also needs checksums for the module sources for that higher
    # version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_import_issue41113.txt

    # one module path should not interfere with adding a nested path.
    
    # Initially, our module depends on split-incompatible v2.1.0-pre+incompatible,
    # from which an imported package has been removed (and relocated to the nested
    # split-incompatible/subpkg module). modload.QueryPattern will suggest
    # split-incompatible v2.0.0+incompatible, which we cannot use (because it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 932 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/consumer/settings.gradle

    // tag::overwrite_version[]
    dependencyResolutionManagement {
        versionCatalogs {
            amendedLibs {
                from("com.mycompany:catalog:1.0")
                // overwrite the "groovy" version declared in the imported catalog
                version("groovy", "3.0.6")
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            verifier.verify(logger, calls(1)).debug("Importing foreign packages into class realm {}", "maven.api");
            verifier.verify(logger, calls(1)).debug("  Imported: {} < {}", "group1:artifact1", "test");
            verifier.verify(logger, calls(1)).debug("  Excluded: {}", "group1:artifact2:ext:classifier1:null");
            verifier.verify(logger, calls(1))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/line.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package obj
    
    import (
    	"cmd/internal/goobj"
    	"cmd/internal/src"
    )
    
    // AddImport adds a package to the list of imported packages.
    func (ctxt *Link) AddImport(pkg string, fingerprint goobj.FingerprintType) {
    	ctxt.Imports = append(ctxt.Imports, goobj.ImportedPkg{Pkg: pkg, Fingerprint: fingerprint})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 892 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/preserve-entry-func-names.mlir

    func.func @main(%arg0: tensor<10xi32>, %arg1: tensor<10xi32>) -> tensor<10xi32>
    attributes {tf.entry_function = {inputs = "foo,bar", outputs = "Add"}} {
      %graph = tf_executor.graph {
        // This node would be renamed to bar1 [note: if imported from TF graphdef this would not be possible]
        %2:2 = tf_executor.island wraps "tf.Identity"(%arg1) {device = "", dtype = "tfdtype$DT_INT32"} : (tensor<10xi32>) -> tensor<10xi32> loc ("bar")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtImportOptimizer.kt

            return analysisSession.importOptimizer.analyseImports(file)
        }
    
        /**
         * @return a [FqName] which can be used to import [this] symbol or `null` if the symbol cannot be imported.
         */
        public fun KaSymbol.getImportableName(): FqName? = withValidityAssertion {
            return analysisSession.importOptimizer.getImportableName(this)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_lazy_new_import.txt

    #               c.1
    
    
    cp go.mod go.mod.old
    cp lazy.go lazy.go.old
    go mod tidy
    cmp go.mod go.mod.old
    
    # Before adding a new import, the go.mod file should
    # enumerate modules for all packages already imported.
    go list all
    cmp go.mod go.mod.old
    
    # When we add a new import of a package in an existing dependency,
    # and that dependency is already tidy, its transitive dependencies
    # should already be present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 27 23:27:52 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. src/go/doc/testdata/c.go

    	// E1 (should see this)
    	E1 struct{}
    	E2 struct{}
    	E3 struct{}
    	// E4 (should see this)
    	E4 struct{}
    )
    
    // ----------------------------------------------------------------------------
    // Test that local and imported types are different when
    // handling anonymous fields.
    
    type T1 struct{}
    
    func (t1 *T1) M() {}
    
    // T2 must not show methods of local T1
    type T2 struct {
    	a.T1 // not the same as locally declared T1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.2K bytes
    - Viewed (0)
Back to top