Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 487 for Implicits (0.15 sec)

  1. test/fixedbugs/issue15572.go

    // compiledir
    
    // Copyright 2016 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 exporting composite literals with implicit
    // types doesn't crash the typechecker when running over
    // inlined function bodies containing such literals.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 358 bytes
    - Viewed (0)
  2. test/fixedbugs/issue5614.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5614: exported data for inlining may miss
    // named types when used in implicit conversion to
    // their underlying type.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 06:18:36 UTC 2013
    - 320 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    // as under Go 1.16, but under 1.16 its (implicit) external test dependencies
    // are higher.
    module example.com/m
    
    go 1.17
    
    replace (
    	example.net/lazy v0.1.0 => ./lazy
    	example.net/requireincompatible v0.1.0 => ./requireincompatible
    )
    
    require example.net/lazy v0.1.0
    -- implicit.go --
    package implicit
    
    import _ "example.net/lazy"
    -- lazy/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

    import javax.annotation.Nullable;
    
    /**
     * Interface for services which support recording the "implicit inputs" they generate.
     * Whenever a rule calls a service, it may have side effects that needs to be taken
     * into account when checking if the rule is up-to-date. For example, if a rule performs
     * an HTTP query, we know that there is an implicit input to the rule which is the result
     * of the HTTP query (the external resource).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device.h

    //    "/job:localhost/replica:0/task:0/device:GPU:1"}
    // Then executing an operation on CUSTOM:0 will execute it on GPU:0 and GPU:1.
    //
    // Implicit copies onto `device_name` are allowed, replicating the value once
    // per device in `underlying_devices`. Implicit copies off of the device throw
    // an error.
    //
    // All component tensors must have the same dtype. Currently they must also have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 04 21:49:16 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  6. test/fixedbugs/bug476.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Logical operation on named boolean type returns the same type,
    // supporting an implicit conversion to an interface type.  This used
    // to crash gccgo.
    
    package p
    
    type B bool
    
    func (b B) M() {}
    
    type I interface {
    	M()
    }
    
    func F(a, b B) I {
    	return a && b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 434 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

        }
    
        /**
         * A method that helps performance of selection by quickly checking if a
         * metadata container only contains a single, shadowed (the implicit) capability.
         *
         * @return {@code true} if the variant only contains the implicit capability
         */
        private static boolean fastContainsImplicitCapability(ImmutableSet<ImmutableCapability> capabilities) {
            if (capabilities.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/go/parser/testdata/issue34946.src

    // Test case for go.dev/issue/34946: Better synchronization of
    // parser for function declarations that start their
    // body's opening { on a new line.
    
    package p
    
    // accept Allman/BSD-style declaration but complain
    // (implicit semicolon between signature and body)
    func _() int
    { /* ERROR "unexpected semicolon or newline before {" */
    	{ return 0 }
    }
    
    func _() {}
    
    func _(); { /* ERROR "unexpected semicolon or newline before {" */ }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 608 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top