Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 166 for typefix (0.37 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend TestInfo* internal::MakeAndRegisterTestInfo(
          const char* test_case_name,
          const char* name,
          const char* type_param,
          const char* value_param,
          internal::TypeId fixture_class_id,
          Test::SetUpTestCaseFunc set_up_tc,
          Test::TearDownTestCaseFunc tear_down_tc,
          internal::TestFactoryBase* factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

    // TFR Dialect
    //===----------------------------------------------------------------------===//
    
    TFRDialect::TFRDialect(MLIRContext *context)
        : Dialect(/*name=*/"tfr", context, TypeID::get<TFRDialect>()) {
      // TFR depends on TensorFlow for its canonicalization
      context->getOrLoadDialect<TF::TensorFlowDialect>();
    
      addTypes<TFRTensorType, TFRTensorListType, TFRAttrType>();
      addOperations<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			return fmt.Errorf("next: %v", err)
    		}
    
    		dest := filepath.Join(destination, header.Name)
    		switch header.Typeflag {
    		case tar.TypeDir:
    			if _, err := os.Stat(dest); err != nil {
    				if err := os.Mkdir(dest, 0o755); err != nil {
    					return fmt.Errorf("mkdir: %v", err)
    				}
    			}
    		case tar.TypeReg:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    	bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeFor[int]().Bits()-1)))
    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	defaultSampleTypeX int64
    }
    
    // ValueType corresponds to Profile.ValueType
    type ValueType struct {
    	Type string // cpu, wall, inuse_space, etc
    	Unit string // seconds, nanoseconds, bytes, etc
    
    	typeX int64
    	unitX int64
    }
    
    // Sample corresponds to Profile.Sample
    type Sample struct {
    	Location []*Location
    	Value    []int64
    	// Label is a per-label-key map to values for string labels.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	o.X = typ
    	return o
    }
    
    // typeOrNil is like type_ but it returns nil if there was no type
    // instead of reporting an error.
    //
    //	Type     = TypeName | TypeLit | "(" Type ")" .
    //	TypeName = identifier | QualifiedIdent .
    //	TypeLit  = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    //		      SliceType | MapType | Channel_Type .
    func (p *parser) typeOrNil() Expr {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      }
    };
    
    }  // namespace
    
    TensorFlowExecutorDialect::TensorFlowExecutorDialect(MLIRContext *context)
        : Dialect(/*name=*/"tf_executor", context,
                  TypeID::get<TensorFlowExecutorDialect>()) {
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc.inc"
          >();
    
      addInterfaces<TensorFlowExecutorInlinerInterface,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/archive/tar/reader_test.go

    				"GNU.sparse.realsize": "1000",
    				"GNU.sparse.name":     "sparse.db",
    			},
    			Format: FormatPAX,
    		}},
    	}, {
    		file: "testdata/trailing-slash.tar",
    		headers: []*Header{{
    			Typeflag: TypeDir,
    			Name:     strings.Repeat("123456789/", 30),
    			ModTime:  time.Unix(0, 0),
    			PAXRecords: map[string]string{
    				"path": strings.Repeat("123456789/", 30),
    			},
    			Format: FormatPAX,
    		}},
    	}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  9. src/reflect/type.go

    		tt := (*structType)(unsafe.Pointer(t))
    		for i := range tt.Fields {
    			f := &tt.Fields[i]
    			addTypeBits(bv, offset+f.Offset, f.Typ)
    		}
    	}
    }
    
    // TypeFor returns the [Type] that represents the type argument T.
    func TypeFor[T any]() Type {
    	var v T
    	if t := TypeOf(v); t != nil {
    		return t // optimize for T being a non-interface kind
    	}
    	return TypeOf((*T)(nil)).Elem() // only for an interface kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"sZ": {"sizeof...", 1, precUnary},
    	"sc": {"static_cast", 2, precPostfix},
    	"ss": {"<=>", 2, precSpaceship},
    	"st": {"sizeof ", 1, precUnary},
    	"sz": {"sizeof ", 1, precUnary},
    	"te": {"typeid ", 1, precPostfix},
    	"ti": {"typeid ", 1, precPostfix},
    	"tr": {"throw", 0, precPrimary},
    	"tw": {"throw ", 1, precUnary},
    }
    
    // operatorName parses:
    //
    //	operator_name ::= many different two character encodings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top