Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,670 for doens (0.05 sec)

  1. src/internal/types/testdata/fixedbugs/issue51376.go

            var m1 M1
            f(m1)
            g /* ERROR "M1 does not satisfy map[K]V" */ (m1) // M1 has tilde
    
            var m2 M2
            f(m2)
            g(m2) // M1 does not have tilde
    
            var m3 Map
            f(m3)
            g /* ERROR "Map does not satisfy map[string]int" */ (m3) // M in g does not have tilde
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 654 bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/documentMap.dfprop

        #   o isReplaceSchemaDirectUse: Does it output the data to playsql directly? (NotRequired - Default false)
        #   o isOverrideExistingDataFile: Does it output to existing files? (NotRequired - Default false)
        #   o isSynchronizeOriginDate: Does it synchronize origin date for date adjustment? (NotRequired - Default false)
        #
        ; loadDataReverseMap = map:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  3. test/escape_param.go

    	p1.pairs[0] = p2.pairs[1]
    }
    
    func notSelfAssignment3(p1, p2 *PairOfPairs) { // ERROR "leaking param content: p2" "p1 does not escape"
    	p1.pairs[0].p1 = p2.pairs[1].p1
    }
    
    func boxedPairSelfAssign(box *BoxedPair) { // ERROR "box does not escape"
    	box.pair.p1 = box.pair.p2 // ERROR "ignoring self-assignment in box.pair.p1 = box.pair.p2"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 8.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue17318.go

    // where returning it as a regular type does not.
    
    package main
    
    import (
    	"fmt"
    )
    
    type closure func(i, j int) ent
    
    type ent int
    
    func (e ent) String() string {
    	return fmt.Sprintf("%d", int(e)) // ERROR "... argument does not escape$" "int\(e\) escapes to heap$"
    }
    
    //go:noinline
    func foo(ops closure, j int) (err fmt.Stringer) { // ERROR "ops does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 16 15:30:51 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. test/escape_indir.go

    	p := new(ConstPtr) // ERROR "new\(ConstPtr\) escapes to heap"
    	p1 := &ConstPtr{}  // ERROR "&ConstPtr{} does not escape"
    	p1.p = &i
    	*p = *p1
    	return p
    }
    
    func foo(p **int) { // ERROR "p does not escape"
    	i := 0 // ERROR "moved to heap: i"
    	y := p
    	*y = &i
    }
    
    func foo1(p *int) { // ERROR "p does not escape"
    	i := 0 // ERROR "moved to heap: i"
    	y := &p
    	*y = &i
    }
    
    func foo2() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/ExternalResource.java

         * @throws org.gradle.api.resources.MissingResourceException when the resource does not exist
         */
        ExternalResourceReadResult<Void> writeTo(File destination) throws ResourceException;
    
        /**
         * Copies the contents of this resource to the given file, if the resource exists.
         *
         * @return null if this resource does not exist.
         * @throws ResourceException on failure to copy the content.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_deprecated.txt

    # 'go list pkg' does not show deprecation.
    go list example.com/deprecated/a
    stdout '^example.com/deprecated/a$'
    
    # 'go list -m' does not show deprecation.
    go list -m example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.9.0$'
    
    # 'go list -m -versions' does not show deprecation.
    go list -m -versions example.com/deprecated/a
    stdout '^example.com/deprecated/a v1.0.0 v1.9.0$'
    
    # 'go list -m -u' shows deprecation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pkg/apis/events/v1/zz_generated.conversion.go

    	// WARNING: in.Regarding requires manual conversion: does not exist in peer-type
    	out.Related = (*core.ObjectReference)(unsafe.Pointer(in.Related))
    	// WARNING: in.Note requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	// WARNING: in.DeprecatedSource requires manual conversion: does not exist in peer-type
    	// WARNING: in.DeprecatedFirstTimestamp requires manual conversion: does not exist in peer-type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. pkg/apis/events/v1beta1/zz_generated.conversion.go

    	// WARNING: in.Source requires manual conversion: does not exist in peer-type
    	// WARNING: in.FirstTimestamp requires manual conversion: does not exist in peer-type
    	// WARNING: in.LastTimestamp requires manual conversion: does not exist in peer-type
    	// WARNING: in.Count requires manual conversion: does not exist in peer-type
    	out.Type = in.Type
    	out.EventTime = in.EventTime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/version_build_settings.txt

    [cgo] env CGO_CFLAGS=-DFROM_CFLAGS=1
    [cgo] env CGO_CXXFLAGS=-DFROM_CXXFLAGS=1
    [cgo] env CGO_LDFLAGS=-L/extra/dir/does/not/exist
    [cgo] go build '-ldflags=all=-linkmode=external -extldflags=-L/bonus/dir/does/not/exist'
    [cgo] go version -m m$GOEXE
    [cgo] stdout '^\tbuild\t-ldflags="all=-linkmode=external -extldflags=-L/bonus/dir/does/not/exist"$'
    [cgo] stdout '^\tbuild\tCGO_ENABLED=1$'
    [cgo] stdout '^\tbuild\tCGO_CPPFLAGS=-DFROM_CPPFLAGS=1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top