Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for bothLib (0.16 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            notExecuted getSharedLibraryTasks("staticOnly")
            notExecuted getLibraryTasks("none")
    
            and:
            final bothLibProjectFile = projectFile("bothLib.vcxproj")
            bothLibProjectFile.assertHasComponentSources(app.library, "src/both")
            bothLibProjectFile.projectConfigurations.keySet() == ['win32Release', 'x64Release'] as Set
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/v1reflect.gox

    >, x ...<type 1>) <type 1>;
    func AppendSlice (s <type 1>, t <type 1>) <type 1>;
    const Array <type 28> = 17 ;
    const Bool <type 28> = 1 ;
    const BothDir <type 29> = 3 ;
    const Chan <type 28> = 18 ;
    type <type 29>;
    const Complex128 <type 28> = 16 ;
    const Complex64 <type 28> = 15 ;
    func Copy (dst <type 1>, src <type 1>) <type -11>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  3. src/internal/reflectlite/type.go

    	case abi.Chan:
    		// Special case:
    		// x is a bidirectional channel value, T is a channel type,
    		// and x's type V and T have identical element types.
    		if V.ChanDir() == abi.BothDir && haveIdenticalType(T.Elem(), V.Elem(), cmpTags) {
    			return true
    		}
    
    		// Otherwise continue test for identical underlying type.
    		return V.ChanDir() == T.ChanDir() && haveIdenticalType(T.Elem(), V.Elem(), cmpTags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    type aTextOff = abi.TextOff
    
    // ChanDir represents a channel type's direction.
    type ChanDir int
    
    const (
    	RecvDir ChanDir             = 1 << iota // <-chan
    	SendDir                                 // chan<-
    	BothDir = RecvDir | SendDir             // chan
    )
    
    // arrayType represents a fixed array type.
    type arrayType = abi.ArrayType
    
    // chanType represents a channel type.
    type chanType = abi.ChanType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. src/internal/abi/type.go

    	return 0
    }
    
    func (t *Type) Common() *Type {
    	return t
    }
    
    type ChanDir int
    
    const (
    	RecvDir    ChanDir = 1 << iota         // <-chan
    	SendDir                                // chan<-
    	BothDir            = RecvDir | SendDir // chan
    	InvalidDir ChanDir = 0
    )
    
    // ChanType represents a channel type
    type ChanType struct {
    	Type
    	Elem *Type
    	Dir  ChanDir
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	}
    
    	// check that type already in binary is found
    	type T1 int
    	checkSameType(t, ChanOf(BothDir, TypeOf(T1(1))), (chan T1)(nil))
    
    	// Check arrow token association in undefined chan types.
    	var left chan<- chan T
    	var right chan (<-chan T)
    	tLeft := ChanOf(SendDir, ChanOf(BothDir, TypeOf(T(""))))
    	tRight := ChanOf(BothDir, ChanOf(RecvDir, TypeOf(T(""))))
    	if tLeft != TypeOf(left) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/reflect/value.go

    func MakeChan(typ Type, buffer int) Value {
    	if typ.Kind() != Chan {
    		panic("reflect.MakeChan of non-chan type")
    	}
    	if buffer < 0 {
    		panic("reflect.MakeChan: negative buffer size")
    	}
    	if typ.ChanDir() != BothDir {
    		panic("reflect.MakeChan: unidirectional channel type")
    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Value).UnsafeAddr", Method, 0},
    		{"(Value).UnsafePointer", Method, 18},
    		{"Append", Func, 0},
    		{"AppendSlice", Func, 0},
    		{"Array", Const, 0},
    		{"ArrayOf", Func, 5},
    		{"Bool", Const, 0},
    		{"BothDir", Const, 0},
    		{"Chan", Const, 0},
    		{"ChanDir", Type, 0},
    		{"ChanOf", Func, 1},
    		{"Complex128", Const, 0},
    		{"Complex64", Const, 0},
    		{"Copy", Func, 0},
    		{"DeepEqual", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg path/filepath, var ErrBadPattern error
    pkg path/filepath, var SkipDir error
    pkg reflect, const Array Kind
    pkg reflect, const Bool Kind
    pkg reflect, const BothDir ChanDir
    pkg reflect, const Chan Kind
    pkg reflect, const Complex128 Kind
    pkg reflect, const Complex64 Kind
    pkg reflect, const Float32 Kind
    pkg reflect, const Float64 Kind
    pkg reflect, const Func Kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg path/filepath (windows-amd64), const ListSeparator = 59
    pkg path/filepath (windows-amd64), const Separator = 92
    pkg reflect, const Array = 17
    pkg reflect, const Bool = 1
    pkg reflect, const BothDir = 3
    pkg reflect, const Chan = 18
    pkg reflect, const Complex128 = 16
    pkg reflect, const Complex64 = 15
    pkg reflect, const Float32 = 13
    pkg reflect, const Float64 = 14
    pkg reflect, const Func = 19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top