Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,377 for Imported (0.12 sec)

  1. test/fixedbugs/issue13539.go

    // Verify that a label named like a package is recognized
    // as a label rather than a package and that the package
    // remains unused.
    
    package main
    
    import "math" // ERROR "imported and not used"
    
    func main() {
    math:
    	for {
    		break math
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 417 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/ProjectRootOfTest.kt

                    importedProjectRoot = folder("root")
                ),
                equalTo(folder("separate/nested-project-root"))
            )
        }
    
        @Test
        fun `given a script file under the imported project it should return the imported project root`() {
    
            withFolders {
                "root" {
                    "sub-project" {
                        withFile("build.gradle.kts")
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/python/mlir.h

    //   exported_names_str: Comma-separated list of names to export.
    //                       Empty means "export all".
    //
    // Returns:
    //   A string of textual MLIR representing the raw imported SavedModel.
    std::string ExperimentalConvertSavedModelToMlir(
        const std::string &saved_model_path, const std::string &exported_names_str,
        bool show_debug_info, TF_Status *status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter.go

    }
    
    // Import imports a gc-generated package given its import path and srcDir, adds
    // the corresponding package object to the packages map, and returns the object.
    // The packages map must contain all packages already imported.
    func Import(fset *token.FileSet, packages map[string]*types.Package, path, srcDir string, lookup func(path string) (io.ReadCloser, error)) (pkg *types.Package, err error) {
    	var rc io.ReadCloser
    	var id string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/importdecl1/importdecl1a.go

    // license that can be found in the LICENSE file.
    
    // Test case for issue 8969.
    
    package importdecl1
    
    import "go/ast"
    import . "unsafe"
    
    var _ Pointer // use dot-imported package unsafe
    
    // Test cases for issue 23914.
    
    type A interface {
    	// Methods m1, m2 must be type-checked in this file scope
    	// even when embedded in an interface in a different
    	// file of the same package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 521 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/buildship.gradle

     *
     * The $buildDir/buildshipProject folder can be imported into Eclipse by using the
     * File > Import > Existing Project into workspace... functionality.
     *
     * If the Buildship plug-ins are present in the same workspace, then the binary Tooling API
     * dependency is automatically replaced with the imported project.
     */
    import java.util.regex.Matcher
    import java.util.zip.ZipEntry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. tools/golangci-override.yaml

              - "!**/pkg/test/framework/**"
              - "!**/tests/fuzz/**"
            deny:
              - pkg: istio.io/istio/operator
                desc: "operator should not be imported"
              - pkg: istio.io/istio/istioctl
                desc: "istioctl should not be imported"
          DenyOpenTelemetry:
            files:
              - $all
              - "!**/pkg/monitoring/**"
              - "!**/pkg/tracing/**"
            deny:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11361.go

    // errorcheck
    
    // Copyright 2016 The Go Authors.  All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    import "fmt"  // GC_ERROR "imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 351 bytes
    - Viewed (0)
  9. ci/official/wheel_test/test_import_api_packages.py

    # limitations under the License.
    # ==============================================================================
    
    """Import API packages test.
    
    This is a Python test that verifies whether API v2 packages can be imported
    from the current build or not.
    
    It uses the `_api/v2/api_packages.txt` file from the local wheel file.
    The `_api/v2/api_packages.txt` file is created during the process of generating
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/importdecl0/importdecl0b.go

    // license that can be found in the LICENSE file.
    
    package importdecl0
    
    import "math"
    import m "math"
    
    import . "testing" // declares T in file scope
    import . /* ERRORx `.unsafe. imported and not used` */ "unsafe"
    import . "fmt"     // declares Println in file scope
    
    import (
    	"" /* ERROR "invalid import path" */
    	"a!b" /* ERROR "invalid import path" */
    	"abc\xffdef" /* ERROR "invalid import path" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 742 bytes
    - Viewed (0)
Back to top