Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,964 for importing (0.16 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/PluginTestPreconditions.groovy

    import org.gradle.test.precondition.TestPrecondition
    
    // These imports are required, IntelliJ incorrectly thinks that they are not used because old versions of Groovy
    // permitted subtypes to use the parent type's methods without importing them
    import static org.gradle.test.precondition.TestPrecondition.satisfied;
    
    class PluginTestPreconditions {
        static File locate(String shellCommand) {
            return [
                new File("/bin/$shellCommand"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/index.md

    <font color="#3465A4">INFO    </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
    
     ╭─ <font color="#8AE234"><b>Python module file</b></font> ─╮
     │                      │
     │  🐍 main.py          │
     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_promote_implicit.txt

    stderr '^package m/use-indirect imports indirect-with-pkg from implicitly required module; to add missing requirements, run:\n\tgo get indirect-with-pkg@v1.0.0$'
    
    # We can promote the implicit requirement by getting the importing package.
    # NOTE: the hint recommends getting the imported package (tested below) since
    # it's more obvious and doesn't require -d. However, that adds an '// indirect'
    # comment on the requirement.
    go get m/use-indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/podresources/client.go

    	"k8s.io/cri-client/pkg/util"
    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // Note: Consumers of the pod resources API should not be importing this package.
    // They should copy paste the function in their project.
    
    // GetV1alpha1Client returns a client for the PodResourcesLister grpc service
    // Note: This is deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        Reason: File '${missingFile.absolutePath}' doesn't exist.
    
        Possible solution: Make sure that the catalog file '${missingFile.name}' exists before importing it.
    
        ${documentation}"""
            }
        }
    
        static class NoImportFiles extends InCatalog<NoImportFiles> {
            NoImportFiles() {
                intro = """Invalid catalog definition:
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/mlir_import_options.h

    // GraphImportConfig options, but the naming would make one think it is more
    // general.
    struct MLIRImportOptions {
      // If true, functionalize the input graph before importing it into MLIR.
      bool upgrade_legacy = false;
    
      // Whether to unconditionally use the shape set via _output_shapes on import.
      bool unconditionally_use_set_output_shapes = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 20 13:19:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/test/runtime_unversioned_test.go

    */
    
    package test
    
    import (
    	"encoding/json"
    	"reflect"
    	"testing"
    
    	// TODO: Ideally we should create the necessary package structure in e.g.,
    	// pkg/conversion/test/... instead of importing pkg/api here.
    	apitesting "k8s.io/apimachinery/pkg/api/apitesting"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

    # This check that we don't error out when importing GraphDef containing
    # functions with arg name that are the same as the graph input name
    
    # CHECK: func @main(%arg0: tensor<{{.*}}i32>) -> tensor<{{.*}}i32>
    # CHECK: func private @while_body
    # CHECK: func private @while_cond
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top