Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for variant (0.14 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// traversal couldn't start, `*undeleted_files` must be set to 0 and
      /// `*undeleted_dirs` must be set to 1.
      ///
      /// TODO(b/139060984): After all filesystems are converted, consider
      /// invariant about `*undeleted_files` and `*undeleted_dirs`.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if directory was deleted.
      ///   * Must set `status` to `TF_NOT_FOUND` if `path` doesn't exist.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	if s == "CFType" {
    		return true
    	}
    	if c.getTypeIDs[s] {
    		return true
    	}
    	if i := strings.Index(s, "Mutable"); i >= 0 && c.getTypeIDs[s[:i]+s[i+7:]] {
    		// Mutable and immutable variants share a type ID.
    		return true
    	}
    	return false
    }
    
    // Comment from Darwin's CFInternal.h
    /*
    // Tagged pointer support
    // Low-bit set means tagged object, next 3 bits (currently)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
Back to top