Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,644 for Imported (0.1 sec)

  1. test/import4.go

    // errorcheckdir
    
    // Copyright 2009 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.
    
    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 21:22:01 UTC 2012
    - 310 bytes
    - Viewed (0)
  2. 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)
  3. test/fixedbugs/bug414.go

    // rundir
    
    // Copyright 2012 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.
    
    // Issue 1743: test embedding of imported types with private methods.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 258 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_promote_implicit.txt

    cp go.mod.orig go.mod
    
    # If we list a package in an implicit dependency imported from the main module,
    # we should get an error because the dependency should have an explicit
    # requirement.
    go list -m indirect-with-pkg
    stdout '^indirect-with-pkg v1.0.0 => ./indirect-with-pkg$'
    ! go list ./use-indirect
    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$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. test/fixedbugs/issue19028.go

    // correct code to identify the type reflect.Method.
    // The failing code relied on Type.String() which had
    // formatting that depended on whether a package (in
    // this case "reflect") was imported more than once.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 21:57:56 UTC 2017
    - 454 bytes
    - Viewed (0)
  7. test/fixedbugs/bug192.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "fmt"	// GCCGO_ERROR "previous"
    
    var _ = fmt.Println // avoid imported and not used error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 21:28:48 UTC 2020
    - 351 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/output-shapes-attr.pbtxt

      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
    }
    versions {
      producer: 29
      min_consumer: 12
    }
    
    # Verify that functions from the library are properly imported.
    
    # CHECK-LABEL:  func @main() {
    # CHECK:    "tf.Placeholder"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 426 bytes
    - Viewed (0)
  9. test/fixedbugs/issue15646.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that method expressions are correctly encoded
    // in binary export data and can be imported again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 19:23:04 UTC 2016
    - 291 bytes
    - Viewed (0)
  10. 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)
Back to top