Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for SetColor (0.3 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

                        @ServiceReference("lamp") Property<LavaLamp> getLamp()
                        @Input Property<String> getColor()
                    }
    
                    void execute(Parameters parameters) {
                        parameters.with {
                            lamp.get().setColor(color.get())
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/universe.go

    		universeAnyAlias = NewTypeName(nopos, nil, "any", nil)
    		universeAnyAlias.setColor(black)
    		_ = NewAlias(universeAnyAlias, universeAnyNoAlias.Type().Underlying()) // Link TypeName and Alias
    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/go/types/universe.go

    		universeAnyAlias = NewTypeName(nopos, nil, "any", nil)
    		universeAnyAlias.setColor(black)
    		_ = NewAlias(universeAnyAlias, universeAnyNoAlias.Type().Underlying()) // Link TypeName and Alias
    		def(universeAnyAlias)
    	}
    
    	// type error interface{ Error() string }
    	{
    		obj := NewTypeName(nopos, nil, "error", nil)
    		obj.setColor(black)
    		typ := NewNamed(obj, nil, nil)
    
    		// error.Error() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    		return
    	}
    
    	switch obj.color() {
    	case white:
    		assert(obj.Type() == nil)
    		// All color values other than white and black are considered grey.
    		// Because black and white are < grey, all values >= grey are grey.
    		// Use those values to encode the object's index into the object path.
    		obj.setColor(grey + color(check.push(obj)))
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/go/types/decl.go

    	if obj.color() == white && obj.Type() != nil {
    		obj.setColor(black)
    		return
    	}
    
    	switch obj.color() {
    	case white:
    		assert(obj.Type() == nil)
    		// All color values other than white and black are considered grey.
    		// Because black and white are < grey, all values >= grey are grey.
    		// Use those values to encode the object's index into the object path.
    		obj.setColor(grey + color(check.push(obj)))
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. src/go/types/object.go

    	color() color
    
    	// setType sets the type of the object.
    	setType(Type)
    
    	// setOrder sets the order number of the object. It must be > 0.
    	setOrder(uint32)
    
    	// setColor sets the object's color. It must not be white.
    	setColor(color color)
    
    	// setParent sets the parent scope of the object.
    	setParent(*Scope)
    
    	// sameId reports whether obj.Id() and Id(pkg, name) are the same.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/object.go

    	color() color
    
    	// setType sets the type of the object.
    	setType(Type)
    
    	// setOrder sets the order number of the object. It must be > 0.
    	setOrder(uint32)
    
    	// setColor sets the object's color. It must not be white.
    	setColor(color color)
    
    	// setParent sets the parent scope of the object.
    	setParent(*Scope)
    
    	// sameId reports whether obj.Id() and Id(pkg, name) are the same.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/scope.go

    func (*lazyObject) setType(Type)                       { panic("unreachable") }
    func (*lazyObject) setOrder(uint32)                    { panic("unreachable") }
    func (*lazyObject) setColor(color color)               { panic("unreachable") }
    func (*lazyObject) setParent(*Scope)                   { panic("unreachable") }
    func (*lazyObject) sameId(*Package, string, bool) bool { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/scope.go

    func (*lazyObject) setType(Type)                       { panic("unreachable") }
    func (*lazyObject) setOrder(uint32)                    { panic("unreachable") }
    func (*lazyObject) setColor(color color)               { panic("unreachable") }
    func (*lazyObject) setParent(*Scope)                   { panic("unreachable") }
    func (*lazyObject) sameId(*Package, string, bool) bool { panic("unreachable") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. cmd/common-main.go

    	t, _ := minioVersionToReleaseTime(Version)
    	if !t.IsZero() {
    		globalVersionUnix = uint64(t.Unix())
    	}
    
    	globalIsCICD = env.Get("MINIO_CI_CD", "") != "" || env.Get("CI", "") != ""
    
    	console.SetColor("Debug", fcolor.New())
    
    	gob.Register(StorageErr(""))
    	gob.Register(madmin.TimeInfo{})
    	gob.Register(madmin.XFSErrorConfigs{})
    	gob.Register(map[string]string{})
    	gob.Register(map[string]interface{}{})
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top