Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 937 for DerivedT (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/derived_shape_attr.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    // Check that attributes that define derived shapes are exported.
    
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: unknown_rank: true
    // CHECK: name: "static"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape {
    // CHECK-NEXT: }
    // CHECK: name: "static_10"
    // CHECK: op: "PlaceholderWithDefault"
    // CHECK: shape
    // CHECK: dim
    // CHECK: size: 10
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. test/typeparam/mdempsky/20.go

    // run
    
    // Copyright 2022 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.
    
    // Test that method expressions with a derived receiver type and
    // promoted methods work correctly.
    
    package main
    
    func main() {
    	F[int]()
    	F[string]()
    }
    
    func F[X any]() {
    	call(T[X].M, T[X].N)
    }
    
    func call[X any](fns ...func(T[X]) int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 16:42:12 UTC 2022
    - 677 bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 989 bytes
    - Viewed (0)
  4. src/runtime/race/race.go

    // Calls to the runtime are done directly from src/runtime/race.go.
    
    // On darwin we always use system DLLs to create threads,
    // so we use race_darwin_$GOARCH.go to provide the syso-derived
    // symbol information without needing to invoke cgo.
    // This allows -race to be used on Mac systems without a C toolchain.
    
    // void __race_unused_func(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 21:38:55 UTC 2022
    - 868 bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 11 18:08:12 UTC 2012
    - 989 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

      explicit BridgeLoggerConfig(
          bool print_module_scope = false, bool print_after_only_on_change = true,
          mlir::OpPrintingFlags op_printing_flags = mlir::OpPrintingFlags());
    
      // A hook that may be overridden by a derived config that checks if the IR
      // of 'operation' should be dumped *before* the pass 'pass' has been
      // executed. If the IR should be dumped, 'print_callback' should be invoked
      // with the stream to dump into.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. pkg/controller/resourceclaim/doc.go

    limitations under the License.
    */
    
    // Package resourceclaim implements the controller part of
    // https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/3063-dynamic-resource-allocation
    //
    // It was derived from the generic ephemeral volume controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:23:50 UTC 2022
    - 824 bytes
    - Viewed (0)
  8. test/interface/embed.go

    // run
    
    // 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.
    
    // Test methods derived from embedded interface values.
    
    package main
    
    import "os"
    
    const Value = 1e12
    
    type Inter interface { M() int64 }
    
    type T int64
    func (t T) M() int64 { return int64(t) }
    var t = T(Value)
    var pt = &t
    var ti Inter = t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 924 bytes
    - Viewed (0)
  9. test/typeparam/issue58513.go

    // run
    
    // Copyright 2023 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.
    
    // Some derived-type expressions require the compiler to synthesize
    // function literals to plumb sub-dictionaries appropriately.
    // However, when these expressions are inlined, we were constructing
    // the function literal bodies with the inline-adjusted positions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 23:07:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_invalid_version.txt

    cd ..
    ! go list -m golang.org/x/text
    stderr 'golang.org/x/text@v0.2.1-0.20171213102548-c4d099d611ac: invalid pseudo-version: tag \(v0.2.0\) found on revision c4d099d611ac is already canonical, so should not be replaced with a pseudo-version derived from that tag'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top