Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 879 for indirect$ (0.26 sec)

  1. src/internal/types/testdata/examples/operations.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // indirection
    
    func _[P any](p P) {
            _ = *p // ERROR "cannot indirect p"
    }
    
    func _[P interface{ int }](p P) {
            _ = *p // ERROR "cannot indirect p"
    }
    
    func _[P interface{ *int }](p P) {
            _ = *p
    }
    
    func _[P interface{ *int | *string }](p P) {
            _ = *p // ERROR "must have identical base types"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 582 bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies-notations.toml

    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    simple-with-rich6 = { group = "foo", name = "bar", version = { require = "1.0", reject = ["1.1", "1.2"] } }
    
    shortcut = "g:a:1.0!!"
    
    indirect.module = "g:b"
    indirect.version = "1.2"
    
    incremental.group = "group"
    incremental.name = "name"
    incremental.version.require = "[1.0, 2.0["
    incremental.version.prefer = "1.1"
    
    incremental2.module = "group:name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. schema/callbacks_test.go

    	}
    
    	for _, str := range []string{"BeforeSave", "AfterCreate"} {
    		if !reflect.Indirect(reflect.ValueOf(user)).FieldByName(str).Interface().(bool) {
    			t.Errorf("%v should be true", str)
    		}
    	}
    
    	for _, str := range []string{"BeforeCreate", "BeforeUpdate", "AfterUpdate", "AfterSave", "BeforeDelete", "AfterDelete", "AfterFind"} {
    		if reflect.Indirect(reflect.ValueOf(user)).FieldByName(str).Interface().(bool) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 939 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/selection.go

    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_skip_write.txt

    cmp stdout why.want
    ! exists go.sum
    
    -- go.mod --
    module m
    
    go 1.18
    
    require rsc.io/quote v1.5.2
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/sampler v1.3.0 // indirect
    	rsc.io/testonly v1.0.0 // indirect
    )
    -- go.sum --
    golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c h1:pvCbr/wm8HzDD3fVywevekufpn6tCGPY3spdHeZJEsw=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         * Gets the downstream projects of the specified project. A downstream project is a project that directly or
         * indirectly depends on the given project.
         *
         * @param project The project whose downstream projects should be retrieved, must not be {@code null}.
         * @param transitive A flag whether to retrieve all direct and indirect downstream projects or just the immediate
         *            downstream projects.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/go/types/selection.go

    // Indirect reports whether any pointer indirection was required to get from
    // x to f in x.f.
    //
    // Beware: Indirect spuriously returns true (Go issue #8353) for a
    // MethodVal selection in which the receiver argument and parameter
    // both have type *T so there is no indirection.
    // Unfortunately, a fix is too risky.
    func (s *Selection) Indirect() bool { return s.indirect }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. src/math/big/arith_decl_pure.go

    	return subVV_g(z, x, y)
    }
    
    func addVW(z, x []Word, y Word) (c Word) {
    	// TODO: remove indirect function call when golang.org/issue/30548 is fixed
    	fn := addVW_g
    	if len(z) > 32 {
    		fn = addVWlarge
    	}
    	return fn(z, x, y)
    }
    
    func subVW(z, x []Word, y Word) (c Word) {
    	// TODO: remove indirect function call when golang.org/issue/30548 is fixed
    	fn := subVW_g
    	if len(z) > 32 {
    		fn = subVWlarge
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_fileproxy_vcs_missing_issue51589.txt

    -- $WORK/x/go.mod --
    module example.com/mod
    
    go 1.17
    
    require rsc.io/quote v1.5.2
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/sampler v1.3.0 // indirect
    )
    
    -- $WORK/x/x.go --
    package mod
    
    import (
    	"fmt"
    
    	"rsc.io/quote"
    )
    
    func Echo() {
    	fmt.Println(quote.Hello())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 990 bytes
    - Viewed (0)
  10. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/dependency-notations.toml

    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    simple-with-rich6 = { group = "foo", name = "bar", version = { require = "1.0", reject = ["1.1", "1.2"] } }
    
    shortcut = "g:a:1.0"
    
    indirect.module = "g:b"
    indirect.version = "1.2"
    
    incremental.group = "group"
    incremental.name = "name"
    incremental.version.prefer = "1.1"
    incremental.version.require = "[1.0, 2.0["
    
    incremental2.module = "group:name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top