Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,611 for importing (0.47 sec)

  1. src/cmd/go/testdata/script/mod_get_indirect.txt

    go list -m -f '{{.Path}} {{.Version}}{{if .Indirect}} // indirect{{end}}' all
    stdout '^golang.org/x/text [v0-9a-f\.-]+ // indirect'
    grep 'golang.org/x/text [v0-9a-f\.-]+ // indirect' go.mod
    
    # importing an empty module root as a package does not remove indirect tag.
    cp $WORK/tmp/usetext.go x.go
    go list -e
    grep 'golang.org/x/text v0.3.0 // indirect$' go.mod
    
    # indirect tag should be removed upon seeing direct import.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  2. build-logic/lifecycle/src/main/kotlin/gradlebuild.teamcity-import-test-data.gradle.kts

     * even when the Test task is `FROM-CACHE` or `UP-TO-DATE`. This build service will output a service message to instruct TeamCity to read JUnit test result XMLs.
     *
     * See https://www.jetbrains.com/help/teamcity/service-messages.html#Importing+XML+Reports
     */
    @DisableCachingByDefault(because = "It outputs a TeamCity service message")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 09:11:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    This can be turned off by explicitly calling the `doNotEndorseStrictVersions` method.
    --
    
    [[sub:bom_import]]
    == Importing Maven BOMs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # statements in the packages matched by "./..."; package "a" (for
    # example) has two statements so we expect 20.0% stmts covered. Go
    # 1.19 would print 50% here (due to force importing of all ./...
    # packages); prior to the fix for #58770 Go 1.20 would show 100%
    # coverage. For packages "x" and "f" (which have no tests), check for
    # 0% stmts covered (as opposed to "no test files").
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

         *     foo.bar()     // -> bar()
         *     a.b.c.test()  // -> test()
         *   }
         */
        SHORTEN_IF_ALREADY_IMPORTED,
    
        /**
         * Shorten references to this symbol and import it into the file if importing it is needed for the shortening.
         *
         * Example:
         *   package a.b.c
         *   fun test() {}
         *   fun runFunctions() {
         *     foo.bar()     // -> bar() and add a new import directive `import foo.bar`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. hack/verify-prometheus-imports.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script validates that only a restricted set of packages are importing
    # github.com/prometheus/*
    
    # NOTE: this is not the same as verify-imports which can only verify
    # that within a particular package the imports made are allowed.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::init(false));
    
    // The following approach allows injecting opdefs in addition
    // to those that are already part of the global TF registry  to be linked in
    // prior to importing the graph. The primary goal is for support of custom ops.
    // This is not intended to be a general solution for custom ops for the future
    // but mainly for supporting older models like mobilenet_ssd. More appropriate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/time/tzdata/tzdata.go

    // 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,
    // not by a library. Libraries normally shouldn't decide whether to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins that add support for generating IDE project files used for importing Gradle projects into IDEs"
    
    errorprone {
        disabledChecks.addAll(
            "MixedMutabilityReturnType", // 2 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. ci/official/wheel_test/test_import_api_packages.py

          # skip non-importable paths
          if short_package_name not in self.packages_for_skip:
            try:
              __import__(short_package_name)
            except ImportError:
              logging.exception("error importing %s", short_package_name)
              failed_packages.append(package_name)
    
        if failed_packages:
          self.fail(
              "Failed to import"
              f" {len(failed_packages)}/{len(self.api_packages_v2)} packages"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top