Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 437 for Implicits (0.22 sec)

  1. src/runtime/internal/sys/nih.go

    // `sysAlloc`, `persistentalloc`, r`fixalloc`, or from a manually-managed span).
    //
    // Specifically:
    //
    // 1. `new(T)`, `make([]T)`, `append([]T, ...)` and implicit heap
    // allocation of T are disallowed. (Though implicit allocations are
    // disallowed in the runtime anyway.)
    //
    // 2. A pointer to a regular type (other than `unsafe.Pointer`) cannot be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 18:24:50 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top