Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cccType (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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