Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for LEARN (0.04 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    	}
    	return w != nil && v.ID < w.ID
    }
    
    var (
    	reverseBits = [...]relation{0, 4, 2, 6, 1, 5, 3, 7}
    
    	// maps what we learn when the positive branch is taken.
    	// For example:
    	//      OpLess8:   {signed, lt},
    	//	v1 = (OpLess8 v2 v3).
    	// If v1 branch is taken then we learn that the rangeMask
    	// can be at most lt.
    	domainRelationTable = map[Op]struct {
    		d domain
    		r relation
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # The interface library (tensorflow.dll.if.lib) for linking tensorflow DLL library (tensorflow.dll) on Windows.
    # To learn more about import library (called interface library in Bazel):
    #     https://docs.microsoft.com/en-us/cpp/build/linking-an-executable-to-a-dll?view=vs-2017#linking-implicitly
    filegroup(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	TWOSTOPBITS  = 2
    )
    
    // EscapeCommFunction constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-escapecommfunction.
    const (
    	SETXOFF  = 1
    	SETXON   = 2
    	SETRTS   = 3
    	CLRRTS   = 4
    	SETDTR   = 5
    	CLRDTR   = 6
    	SETBREAK = 8
    	CLRBREAK = 9
    )
    
    // PurgeComm constants. See https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-purgecomm.
    const (
    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. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Deprecated classes, methods and properties
    
    Follow the API links to learn how to deal with these deprecations (if no extra information is provided here):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    system properties, environment variables and value suppliers read during the configuration phase.
    See the <<configuration_cache#config_cache:troubleshooting>> section below for more information.
    
    Keep reading to learn how to tweak the configuration cache, manually invalidate the state if something goes wrong and use the configuration cache from an IDE.
    
    [[config_cache:usage:enable]]
    === Enabling the configuration cache
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    These annotated properties mean that Gradle will skip the task if none of the source files, template engine, model data or generated files has changed since the previous time Gradle executed the task. This will often save a significant amount of time. You can learn how Gradle detects <<#sec:how_does_it_work,changes later>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/sampleJavaProject/groovy",files="build.gradle[tags=inner-link-task-properties]"]
    ====
    
    You can learn more about the `ProjectLayout` class in <<service_injection.adoc#sec:projectlayout,Services>>.
    
    [[sec:single_file_paths]]
    === Using `Project.file()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    * Knowledge of Kotlin syntax and basic language features is very helpful. The link:{kotlin-reference}[Kotlin reference documentation] and link:https://kotlinlang.org/docs/tutorials/koans.html[Kotlin Koans] will help you to learn the basics.
    * Use of the <<plugins#sec:plugins_block,plugins {}>> block to declare Gradle plugins significantly improves the editing experience and is highly recommended.
    
    [[sec:ide_support]]
    == IDE support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/syscall/syscall_windows.go

    }
    
    var ioSync int64
    
    var procSetFilePointerEx = modkernel32.NewProc("SetFilePointerEx")
    
    const ptrSize = unsafe.Sizeof(uintptr(0))
    
    // setFilePointerEx calls SetFilePointerEx.
    // See https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-setfilepointerex
    func setFilePointerEx(handle Handle, distToMove int64, newFilePointer *int64, whence uint32) error {
    	var e1 Errno
    	if unsafe.Sizeof(uintptr(0)) == 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    		}
    
    		fatalf("unresolved names")
    	}
    
    	return needType
    }
    
    // loadDWARF parses the DWARF debug information generated
    // by gcc to learn the details of the constants, variables, and types
    // being referred to as C.xxx.
    func (p *Package) loadDWARF(f *File, conv *typeConv, names []*Name) {
    	// Extract the types from the DWARF section of an object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top