Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for namedStr (0.11 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def res_name(self, ns, types_ns, name):
        name_str = str(name)
        if name_str in TFR_BUILTINS:
          return {TFRTypes.TFR_BUILTIN_FUNC}, name_str
        if name_str in ns:
          ns_val = ns[name_str]
          return {type(ns_val)}, ns_val
        if name_str in __builtins__:
          return {TFRTypes.PY_BUILTIN_FUNC}, __builtins__[name_str]
        # This name is not in the namespace because the autograph transformation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	dsa = [18]uint64{0}
    	bufferAlet, reasonCode = 0, 0
    	bufferLen, returnValue, returnCode = 4096, 0, 0
    	nameptr := (*uint32)(unsafe.Pointer(uintptr(0x21c))) // Get jobname of current process
    	nameptr = (*uint32)(unsafe.Pointer(uintptr(*nameptr + 12)))
    	argv[0] = unsafe.Pointer(uintptr(*nameptr))
    
    	request.header.ident = nwmHeaderIdentifier
    	request.header.length = uint32(unsafe.Sizeof(request.header))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		}
    		return 0, errorspkg.New("parameter must be a ResourceID or a string")
    	}
    	namePtr, err = resolvePtr(name, &name16)
    	if err != nil {
    		return 0, err
    	}
    	resTypePtr, err = resolvePtr(resType, &resType16)
    	if err != nil {
    		return 0, err
    	}
    	resInfo, err := findResource(module, namePtr, resTypePtr)
    	runtime.KeepAlive(name16)
    	runtime.KeepAlive(resType16)
    	return resInfo, err
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    	T1  T1
    	Any string `xml:",any"`
    	T2  T2
    }
    
    type IfaceAny struct {
    	T1  T1
    	Any any `xml:",any"`
    	T2  T2
    }
    
    type Generic[T any] struct {
    	X T
    }
    
    var (
    	nameAttr     = "Sarah"
    	ageAttr      = uint(12)
    	contentsAttr = "lorem ipsum"
    	empty        = ""
    )
    
    // Unless explicitly stated as such (or *Plain), all of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top