Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for cctype (0.17 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h"
    
    #include <algorithm>
    #include <cctype>
    #include <functional>
    #include <memory>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/compiler/mlir/tensorflow/transforms/einsum.h"
    
    #include <algorithm>
    #include <cctype>
    #include <climits>
    #include <cstdint>
    #include <optional>
    #include <string>
    #include <tuple>
    #include <utility>
    #include <vector>
    
    #include "absl/memory/memory.h"
    #include "llvm/ADT/ArrayRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. tensorflow/c/ops.cc

    }
    
    #define DEFINE_TF_GETATTR(func, c_type, cc_type)                         \
      void TF_ShapeInferenceContext_GetAttr##func(                           \
          TF_ShapeInferenceContext* ctx, const char* attr_name, c_type* val, \
          TF_Status* status) {                                               \
        TF_SetStatus(status, TF_OK, "");                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/ca.go

    )
    
    // SigningCAFileBundle locations of the files used for the signing CA
    type SigningCAFileBundle struct {
    	RootCertFile    string
    	CertChainFiles  []string
    	SigningCertFile string
    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. tensorflow/c/kernels.cc

          break;
      }
    }
    
    #define DEFINE_TF_GETATTR(func, c_type, cc_type, attr_type, list_field)        \
      void TF_OpKernelConstruction_GetAttr##func(TF_OpKernelConstruction* ctx,     \
                                                 const char* attr_name,            \
                                                 c_type* val, TF_Status* status) { \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. src/syscall/security_windows.go

    	dn := uint32(50)
    	for {
    		b := make([]byte, n)
    		db := make([]uint16, dn)
    		sid = (*SID)(unsafe.Pointer(&b[0]))
    		e = LookupAccountName(sys, acc, sid, &n, &db[0], &dn, &accType)
    		if e == nil {
    			return sid, UTF16ToString(db), accType, nil
    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return nil, "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return nil, "", 0, e
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactory.java

            }
            Map<UnionOf, List<ExcludeSpec>> byType = flattened.result.stream().collect(Collectors.groupingBy(UnionOf::typeOf));
            List<ModuleIdExclude> moduleIdExcludes = UnionOf.MODULEID.fromMap(byType);
            List<ModuleIdSetExclude> moduleIdSetsExcludes = UnionOf.MODULEID_SET.fromMap(byType);
            List<GroupExclude> groupExcludes = UnionOf.GROUP.fromMap(byType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  8. src/internal/reflectlite/type.go

    	}
    	return toType(tt.InSlice()[i])
    }
    
    func (t rtype) Key() Type {
    	tt := t.Type.MapType()
    	if tt == nil {
    		panic("reflect: Key of non-map type")
    	}
    	return toType(tt.Key)
    }
    
    func (t rtype) Len() int {
    	tt := t.Type.ArrayType()
    	if tt == nil {
    		panic("reflect: Len of non-array type")
    	}
    	return int(tt.Len)
    }
    
    func (t rtype) NumField() int {
    	tt := t.Type.StructType()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/debug/dwarf/type.go

    type UcharType struct {
    	BasicType
    }
    
    // An IntType represents a signed integer type.
    type IntType struct {
    	BasicType
    }
    
    // A UintType represents an unsigned integer type.
    type UintType struct {
    	BasicType
    }
    
    // A FloatType represents a floating point type.
    type FloatType struct {
    	BasicType
    }
    
    // A ComplexType represents a complex floating point type.
    type ComplexType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  10. src/internal/abi/type.go

    }
    
    // Imethod represents a method on an interface type
    type Imethod struct {
    	Name NameOff // name of method
    	Typ  TypeOff // .(*FuncType) underneath
    }
    
    // ArrayType represents a fixed array type.
    type ArrayType struct {
    	Type
    	Elem  *Type // array element type
    	Slice *Type // slice type
    	Len   uintptr
    }
    
    // Len returns the length of t if t is an array type, otherwise 0
    func (t *Type) Len() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top