Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 318 for Builtin (0.51 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables_invalid_session.mlir

    // RUN: tf-opt -verify-diagnostics -tf-saved-model-lift-variables-invalid-session-test -split-input-file %s | FileCheck %s --dump-input=fail
    
    // Test case: Invalid session.
    // expected-error @+1 {{'builtin.module' op no session provided}}
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
         * returned (e.g. MYDOM\alice or MYDOM\Domain Users).
         * If the SID has been resolved but it is is a domain SID,
         * only the domain name will be returned (e.g. MYDOM).
         * If the SID has been resolved but it is a builtin account,
         * only the name component will be returned (e.g. SYSTEM).
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  3. test/fixedbugs/bug491.go

    // run
    
    // Copyright 2014 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 order of calls to builtin functions.
    // Discovered during CL 144530045 review.
    
    package main
    
    func main() {
    	// append
    	{
    		x := make([]int, 0)
    		f := func() int { x = make([]int, 2); return 2 }
    		a, b, c := append(x, 1), f(), append(x, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu-multiple-while-body-func.mlir

    // Since it is possible that this warning may become an error in the future,
    // only check the message content here.
    
    // CHECK-NOT: expected control flow function {{.*}} to have exactly 1 use, found 2
    
    "builtin.module"() ({
      "func.func"() ({
      ^bb0(%arg0: tensor<i32>):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 21:23:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SID.java

        private static final Logger log = LoggerFactory.getLogger(SID.class);
    
        static final String[] SID_TYPE_NAMES = {
            "0", "User", "Domain group", "Domain", "Local group", "Builtin group", "Deleted", "Invalid", "Unknown"
        };
    
        /**
         * 
         */
        public static final int SID_FLAG_RESOLVE_SIDS = 0x0001;
    
        /**
         * Well known SID: EVERYONE
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/mlrt/inline.mlir

    // RUN: tf-tfrt-opt -split-input-file -pass-pipeline='builtin.module(tf-to-mlrt, inline)' %s | FileCheck %s -dump-input=fail
    
    // Test generated tf_mlrt while body and predicate is inlined.
    
    func.func @then(%x: tensor<i1>, %y: tensor<i1>, %z: tensor<i32>) -> tensor<i1> {
      return %x: tensor<i1>
    }
    
    func.func @else(%x: tensor<i1>, %y: tensor<i1>, %z: tensor<i32>) -> tensor<i1> {
      return %y: tensor<i1>
    }
    
    // CHECK-LABEL: func @while_cond_if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 01:01:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/type.go

    type exprFlags uint16
    
    func (f exprFlags) IsVoid() bool          { return f&1 != 0 }
    func (f exprFlags) IsType() bool          { return f&2 != 0 }
    func (f exprFlags) IsBuiltin() bool       { return f&4 != 0 } // a language builtin that resembles a function call, e.g., "make, append, new"
    func (f exprFlags) IsValue() bool         { return f&8 != 0 }
    func (f exprFlags) IsNil() bool           { return f&16 != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/embedding_program_key.mlir

      // CHECK: "tf._TPUCompileMlir"{{.*}}B
      // CHECK: "tf.OpA"([[launch_key]]#1)
      %0:4 = "tf_device.replicate"() ({
        %a = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %b = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %c = builtin.unrealized_conversion_cast to tensor<!tf_type.string>
        %0:2 = "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 14:28:22 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins_test.go

    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    		if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for unsafe.%s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/go/types/builtins_test.go

    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for %s", name)
    		}
    	}
    	for _, name := range Unsafe.Scope().Names() {
    		if _, ok := Unsafe.Scope().Lookup(name).(*Builtin); ok && !seen[name] {
    			t.Errorf("missing test for unsafe.%s", name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top