Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cccType (0.12 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/info.go

    package cases
    
    func (c info) cccVal() info {
    	if c&exceptionBit != 0 {
    		return info(exceptions[c>>exceptionShift]) & cccMask
    	}
    	return c & cccMask
    }
    
    func (c info) cccType() info {
    	ccc := c.cccVal()
    	if ccc <= cccZero {
    		return cccZero
    	}
    	return ccc
    }
    
    // TODO: Implement full Unicode breaking algorithm:
    // 1) Implement breaking in separate package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    			0x0342, // U+0342 COMBINING GREEK PERISPOMENI
    			0x0345: // U+0345 COMBINING GREEK YPOGEGRAMMENI
    			// No-op. Gobble the modifier.
    
    		default:
    			switch v, _ := trie.lookup(c.src[c.pSrc:]); info(v).cccType() {
    			case cccZero:
    				c.unreadRune()
    				return true
    
    			// We don't need to test for IotaSubscript as the only rune that
    			// qualifies (U+0345) was already excluded in the switch statement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. 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)
  4. 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, "");                                     \
        cc_type v;                                                           \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

    #ifndef TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_TARGETS_H_
    #define TENSORFLOW_COMPILER_MLIR_LITE_EXPERIMENTAL_TAC_COMMON_TARGETS_H_
    
    #include <algorithm>
    #include <cctype>
    #include <functional>
    #include <optional>
    #include <string>
    #include <vector>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/IR/Operation.h"  // from @llvm-project
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/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 Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/c/kernels.cc

          status->status = absl::InvalidArgumentError(
              absl::StrCat("Attribute '", attr_name, "' has no value set"));
          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,            \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    limitations under the License.
    ==============================================================================*/
    
    // This file implements logic for lowering TensorFlow dialect to XLA dialect.
    #include <algorithm>
    #include <cctype>
    #include <cmath>
    #include <cstddef>
    #include <cstdint>
    #include <iterator>
    #include <limits>
    #include <numeric>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top