Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 202 for Implicits (0.3 sec)

  1. src/crypto/internal/bigmod/_asm/nat_amd64_asm.go

    	y := Load(Param("y"), GP64())
    
    	carry := GP64()
    	XORQ(carry, carry) // zero out carry
    
    	for i := 0; i < bits/64; i++ {
    		Comment("Iteration " + strconv.Itoa(i))
    		hi, lo := RDX, RAX // implicit MULQ inputs and outputs
    		MOVQ(x.Offset(i*8), lo)
    		MULQ(y)
    		ADDQ(z.Offset(i*8), lo)
    		ADCQ(Imm(0), hi)
    		ADDQ(carry, lo)
    		ADCQ(Imm(0), hi)
    		MOVQ(hi, carry)
    		MOVQ(lo, z.Offset(i*8))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13587.go

    // errorcheck -0 -l -d=wb
    
    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test write barrier for implicit assignments to result parameters
    // that have escaped to the heap.
    
    package issue13587
    
    import "errors"
    
    func escape(p *error)
    
    func F() (err error) {
    	escape(&err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 442 bytes
    - Viewed (0)
  3. test/typeparam/mdempsky/18.go

    // run
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that implicit conversions to interface type in a select/case
    // clause are compiled correctly.
    
    package main
    
    import "fmt"
    
    func main() { f[int]() }
    
    func f[T any]() {
    	ch := make(chan T)
    	close(ch)
    
    	var i, ok any
    	select {
    	case i, ok = <-ch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 29 19:33:57 UTC 2022
    - 457 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_find_nodeps.txt

    # Issue #46092
    # go list -find should always return a package with an empty Deps list
    
    # The linker loads implicit dependencies
    go list -find -f {{.Deps}} ./cmd
    stdout '\[\]'
    
    # Cgo translation may add imports of "unsafe", "runtime/cgo" and "syscall"
    go list -find -f {{.Deps}} ./cgo
    stdout '\[\]'
    
    # SWIG adds imports of some standard packages
    go list -find -f {{.Deps}} ./swig
    stdout '\[\]'
    
    -- go.mod --
    module listfind
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 12 14:43:27 UTC 2021
    - 737 bytes
    - Viewed (0)
  5. test/typeparam/issue54765.go

    	"sync/atomic"
    )
    
    var _ atomic.Pointer[cgo.Incomplete]  // ERROR "cannot use incomplete \(or unallocatable\) type as a type argument: runtime/cgo\.Incomplete"
    var _ atomic.Pointer[*cgo.Incomplete] // ok
    
    func implicit(ptr *cgo.Incomplete) {
    	g(ptr)  // ERROR "cannot use incomplete \(or unallocatable\) type as a type argument: runtime/cgo\.Incomplete"
    	g(&ptr) // ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 729 bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/DefaultIdeArtifactRegistry.java

            ProjectState projectState = projectRegistry.stateFor(project);
            if (!projectState.getOwner().isImplicitBuild()) {
                // Do not include implicit builds in workspace
                for (IdeProjectMetadata ideProjectMetadata : store.get(project)) {
                    if (type.isInstance(ideProjectMetadata)) {
                        return type.cast(ideProjectMetadata);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectTaskLister.java

    import org.gradle.api.Project;
    import org.gradle.api.Task;
    
    import java.util.Collection;
    
    /**
     * Service to provide all tasks in a project including both regular tasks,
     * and implicit tasks.
     */
    public interface ProjectTaskLister {
        Collection<Task> listProjectTasks(Project project);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 950 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/install_cross_gobin.txt

    env GO111MODULE=off
    [short] skip # rebuilds std for alternate architecture
    
    cd mycmd
    go build mycmd
    
    # cross-compile install with implicit GOBIN=$GOPATH/bin can make subdirectory
    env GOARCH=386
    [GOARCH:386] env GOARCH=amd64
    env GOOS=linux
    go install mycmd
    exists $GOPATH/bin/linux_$GOARCH/mycmd
    
    # cross-compile install with explicit GOBIN cannot make subdirectory
    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        IncludedBuildState addIncludedBuild(BuildDefinition buildDefinition, Path buildPath);
    
        /**
         * Creates an implicit included build. An implicit build is-a nested build that is managed by Gradle and whose outputs are used by dependency resolution.
         */
        IncludedBuildState addImplicitIncludedBuild(BuildDefinition buildDefinition);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationPublications.java

     *
     * <p>An implicit variant is defined for a configuration whenever any artifacts are attached directly to this object or inherited from another configuration.</p>
     *
     * @since 3.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top