Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 851 for Listed (0.11 sec)

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

    ! go list .
    stderr '^go: cannot load module y listed in go\.work file: open y'${/}'go\.mod:'
    
    -- go.work --
    use ./y
    -- x/go.mod --
    module x
    
    go 1.19
    -- x/m.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 172 bytes
    - Viewed (0)
  2. tensorflow/cc/framework/testutil.h

    #include "tensorflow/cc/framework/scope.h"
    
    namespace tensorflow {
    namespace test {
    
    /// Computes the outputs listed in 'tensors', returns the tensors in 'out'.
    void GetTensors(const Scope& scope, OutputList tensors,
                    std::vector<Tensor>* out);
    
    // Computes the outputs listed in 'tensors', returns the tensors in 'out'.
    // assign_vars are extra outputs that should be run
    // e.g. to assign values to variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:47:18 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_sync_toolchain.txt

    go work edit -go=1.21
    grep '^go 1.21$' go.work
    ! grep toolchain go.work
    env GOTOOLCHAIN=local
    ! go work sync
    stderr '^go: cannot load module m1_22_0 listed in go.work file: m1_22_0'${/}'go.mod requires go >= 1.22.0 \(running go 1.21; GOTOOLCHAIN=local\)$'
    stderr '^go: cannot load module m1_22_1 listed in go.work file: m1_22_1'${/}'go.mod requires go >= 1.22.1 \(running go 1.21; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go work sync
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_implicit_go_requirement.txt

    # Issue 66207: provide a better error message when there's no
    # go directive in a go.work file so 1.18 is implicitly required.
    
    ! go list
    stderr 'go: module . listed in go.work file requires go >= 1.21, but go.work implicitly requires go 1.18; to update it:\s+go work use'
    
    go work use
    go list
    stdout foo
    
    -- go.work --
    use .
    -- go.mod --
    module foo
    
    go 1.21
    -- foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:35:47 UTC 2024
    - 384 bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies the version of a dependency listed in a parent's
     * dependencyManagement section is chosen over another version of the same
     * dependency, listed transitively.
     *
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. releasenotes/notes/45866.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 45866
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 194 bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/preflight.go

    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    			"kubeadm will migrate the configuration while leaving the listed plugin configs untouched, " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/mark_functions_noinline.mlir

    func.func @noinline0() -> (tensor<0xf32>) {
      %cst = "tf.Const"() {value = dense<1.0> : tensor<0xf32>} : () -> tensor<0xf32>
      return %cst : tensor<0xf32>
    }
    
    // -----
    
    // Tests that the function not listed in the option `noinline-functions`
    // is not marked tf._noinline = true.
    
    // CHECK-LABEL: @inline
    // CHECK-NOT: tf._noinline
    func.func @inline() -> (tensor<0xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 00:02:46 UTC 2023
    - 841 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                    expectResolve()
                }
            }
    
            then:
            succeeds 'checkDeps'
        }
    
        void "caches version listing using #lister lister"() {
            ListerInteractions listerInteractions
            switch (lister) {
                case 'simple':
                    listerInteractions = withLister(modules, true)
                    break;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/distributions-full/src/toplevel/NOTICE

    HttpClient (https://hc.apache.org/httpcomponents-client-4.5.x/)
    
    For licenses, see the LICENSE file.
    
    If any software distributed with Gradle does not have an Apache 2 License, its license is explicitly listed in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 11 13:09:36 UTC 2021
    - 868 bytes
    - Viewed (0)
Back to top