Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 879 for indirect$ (0.47 sec)

  1. callbacks/callmethod.go

    		switch db.Statement.ReflectValue.Kind() {
    		case reflect.Slice, reflect.Array:
    			db.Statement.CurDestIndex = 0
    			for i := 0; i < db.Statement.ReflectValue.Len(); i++ {
    				if value := reflect.Indirect(db.Statement.ReflectValue.Index(i)); value.CanAddr() {
    					fc(value.Addr().Interface(), tx)
    				} else {
    					db.AddError(gorm.ErrInvalidValue)
    					return
    				}
    				db.Statement.CurDestIndex++
    			}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:20:29 UTC 2023
    - 846 bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/version.go

    	// module that provides any package transitively imported by that module.
    	//
    	// Other indirect dependencies of such a module can be safely pruned out of
    	// the module graph; see https://golang.org/ref/mod#graph-pruning.
    	ExplicitIndirectVersion = "1.17"
    
    	// separateIndirectVersion is the Go version at which
    	// "// indirect" dependencies are added in a block separate from the direct
    	// ones. See https://golang.org/issue/45965.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/LICENSE

     * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
     * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    ccflags="$@"
    
    # Write go tool cgo -godefs input.
    (
    	echo package plan9
    	echo
    	echo '/*'
    	indirect="includes_$(uname)"
    	echo "${!indirect} $includes"
    	echo '*/'
    	echo 'import "C"'
    	echo
    	echo 'const ('
    
    	# The gcc command line prints all the #defines
    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// the parameter is of interface type).
    	ParamMayFeedInterfaceMethodCall ParamPropBits = 1 << iota
    
    	// Parameter value feeds unmodified into a top level indirect
    	// function call (assumes parameter is of function type).
    	ParamFeedsIndirectCall
    
    	// Parameter value feeds unmodified into an indirect function call
    	// that is conditional/nested (not guaranteed to execute). Assumes
    	// parameter is of function type.
    	ParamMayFeedIndirectCall
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_run_issue52331.txt

    grep -count=1 '^example\.com/version v1.1.0/go.mod h1:' go.sum
    
    -- go.mod --
    module example
    
    go 1.17
    -- go.mod.want --
    module example
    
    go 1.17
    
    require example.com/version v1.1.0 // indirect
    -- main.go --
    package main
    
    import (
    	"fmt"
    
    	"example.com/version"
    )
    
    func main() {
    	fmt.Println(version.V)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 16:42:28 UTC 2022
    - 704 bytes
    - Viewed (0)
  7. src/html/template/content.go

    	// embedded content and network messages are formed, vetted,
    	// or interpreted; or which credentials network messages carry.
    	contentTypeUnsafe
    )
    
    // indirect returns the value, after dereferencing as many times
    // as necessary to reach the base type (or nil).
    func indirect(a any) any {
    	if a == nil {
    		return nil
    	}
    	if t := reflect.TypeOf(a); t.Kind() != reflect.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:30:25 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. test/fixedbugs/bug417.go

    // compile
    
    // Copyright 2009 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.
    
    // Some indirect uses of types crashed gccgo, because it assumed that
    // the size of the type was known before it had been computed.
    
    package p
    
    type S1 struct {
    	p *[1]S3
    	s [][1]S3
    	m map[int][1]S3
    	c chan [1]S3
    	i interface { f([1]S3) [1]S3 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 674 bytes
    - Viewed (0)
  9. licenses/github.com/davecgh/go-spew/LICENSE

    THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 766 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    )
    
    require example.com/d v0.1.0 // indirect
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c1
    	example.com/c v0.2.0 => ./c2
    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    -- go.mod.down2 --
    module example.com/a
    
    go 1.17
    
    require example.com/c v0.1.0
    
    require example.com/d v0.2.0 // indirect
    
    replace (
    	example.com/b v0.1.0 => ./b1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top