Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for libName (0.12 sec)

  1. src/syscall/syscall_windows.go

    func NewCallbackCDecl(fn any) uintptr {
    	return compileCallback(fn, false)
    }
    
    // windows api calls
    
    //sys	GetLastError() (lasterr error)
    //sys	LoadLibrary(libname string) (handle Handle, err error) = LoadLibraryW
    //sys	FreeLibrary(handle Handle) (err error)
    //sys	GetProcAddress(module Handle, procname string) (proc uintptr, err error)
    //sys	GetVersion() (ver uint32, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinaryTest.groovy

            expect:
            binary.toString() == "prebuilt static library 'lib:name'"
            binary.displayName == "prebuilt static library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt static library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt static library 'lib:name'"
        }
    
        def "can set static library file"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltSharedLibraryBinaryTest.groovy

            expect:
            binary.toString() == "prebuilt shared library 'lib:name'"
            binary.displayName == "prebuilt shared library 'lib:name'"
            binary.linkFiles.toString() == "link files for prebuilt shared library 'lib:name'"
            binary.runtimeFiles.toString() == "runtime files for prebuilt shared library 'lib:name'"
        }
    
        def "uses library file when link file not set"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. licenses/sigs.k8s.io/yaml/goyaml.v3/LICENSE

    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Copyright (c) 2006-2010 Kirill Simonov
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. licenses/gopkg.in/yaml.v3/LICENSE

    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Copyright (c) 2006-2010 Kirill Simonov
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  6. LICENSES/vendor/gopkg.in/yaml.v3/LICENSE

    = vendor/gopkg.in/yaml.v3 licensed under: =
    
    
    This project is covered by two different licenses: MIT and Apache.
    
    #### MIT License ####
    
    The following files were ported to Go from C files of libyaml, and thus
    are still covered by their original MIT license, with the additional
    copyright staring in 2011 when the project was ported over:
    
        apic.go emitterc.go parserc.go readerc.go scannerc.go
        writerc.go yamlh.go yamlprivateh.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 13 19:52:57 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		cc = append(cc, "-framework", "CoreFoundation")
    	}
    	libbase := GOOS + "_" + GOARCH
    	if runtime.Compiler == "gccgo" {
    		libbase = "gccgo_" + libgodir + "_fPIC"
    	} else {
    		switch GOOS {
    		case "darwin", "ios":
    			if GOARCH == "arm64" {
    				libbase += "_shared"
    			}
    		case "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "solaris", "illumos":
    			libbase += "_shared"
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. src/text/scanner/scanner.go

    		}
    	}
    
    	// fractional part
    	if seenDot {
    		tok = Float
    		if prefix == 'o' || prefix == 'b' {
    			s.error("invalid radix point in " + litname(prefix))
    		}
    		ch, ds = s.digits(ch, base, &invalid)
    		digsep |= ds
    	}
    
    	if digsep&1 == 0 {
    		s.error(litname(prefix) + " has no digits")
    	}
    
    	// exponent
    	if e := lower(ch); (e == 'e' || e == 'p') && s.Mode&ScanFloats != 0 {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. src/go/scanner/scanner.go

    	// fractional part
    	if s.ch == '.' {
    		tok = token.FLOAT
    		if prefix == 'o' || prefix == 'b' {
    			s.error(s.offset, "invalid radix point in "+litname(prefix))
    		}
    		s.next()
    		digsep |= s.digits(base, &invalid)
    	}
    
    	if digsep&1 == 0 {
    		s.error(s.offset, litname(prefix)+" has no digits")
    	}
    
    	// exponent
    	if e := lower(s.ch); e == 'e' || e == 'p' {
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        # .so file in the directory
        lib_dir = os.path.dirname(source.__file__)
        for lib_name in os.listdir(lib_dir):
          if lib_name.endswith('.so'):
            lib_path = os.path.join(lib_dir, lib_name)
            logging.info('load file: ' + lib_path)
            load_library.load_op_library(lib_path)
    
      py_funcs = [
          func
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
Back to top