Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for unreadable (0.29 sec)

  1. src/cmd/compile/internal/types2/scope.go

    func (*lazyObject) Parent() *Scope                     { panic("unreachable") }
    func (*lazyObject) Pos() syntax.Pos                    { panic("unreachable") }
    func (*lazyObject) Pkg() *Package                      { panic("unreachable") }
    func (*lazyObject) Name() string                       { panic("unreachable") }
    func (*lazyObject) Type() Type                         { 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)
  2. src/go/types/scope.go

    func (*lazyObject) Parent() *Scope                     { panic("unreachable") }
    func (*lazyObject) Pos() token.Pos                     { panic("unreachable") }
    func (*lazyObject) Pkg() *Package                      { panic("unreachable") }
    func (*lazyObject) Name() string                       { panic("unreachable") }
    func (*lazyObject) Type() Type                         { 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)
  3. src/runtime/mfinal.go

    // finalizer function. When the garbage collector finds an unreachable block
    // with an associated finalizer, it clears the association and runs
    // finalizer(obj) in a separate goroutine. This makes obj reachable again,
    // but now without an associated finalizer. Assuming that SetFinalizer
    // is not called again, the next time the garbage collector sees
    // that obj is unreachable, it will free obj.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. scan.go

    				for idx, column := range columns {
    					if field := sch.LookUpField(column); field != nil && field.Readable {
    						fields[idx] = field
    						if count, ok := matchedFieldCount[column]; ok {
    							// handle duplicate fields
    							for _, selectField := range sch.Fields {
    								if selectField.DBName == column && selectField.Readable {
    									if count == 0 {
    										matchedFieldCount[column]++
    										fields[idx] = selectField
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			svdata: FakeSVMapData{
    				gvr: schema.GroupVersionResource{
    					Group:    "core",
    					Version:  "foo",
    					Resource: "bar"},
    				serverId: localServerId},
    		},
    		{
    			desc:                 "503 unreachable peer bind address",
    			requestPath:          "/api/foo/bar",
    			expectedStatus:       http.StatusServiceUnavailable,
    			informerFinishedSync: true,
    			svdata: FakeSVMapData{
    				gvr: schema.GroupVersionResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. src/text/template/funcs.go

    func and(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    	panic("unreachable") // implemented as a special case in evalCall
    }
    
    // or computes the Boolean OR of its arguments, returning
    // the first true argument it encounters, or the last argument.
    func or(arg0 reflect.Value, args ...reflect.Value) reflect.Value {
    	panic("unreachable") // implemented as a special case in evalCall
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/math/big/float.go

    			inc = rbit != 0 && (sbit != 0 || z.mant[0]&lsb != 0)
    		case ToNearestAway:
    			inc = rbit != 0
    		case AwayFromZero:
    			inc = true
    		case ToPositiveInf:
    			inc = !z.neg
    		default:
    			panic("unreachable")
    		}
    
    		// A positive result (!z.neg) is Above the exact result if we increment,
    		// and it's Below if we truncate (Exact results require no rounding).
    		// For a negative result (z.neg) it is exactly the opposite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    				// initialize a variable with the function.
    			}
    
    		default:
    			panic("unreachable")
    		}
    		assert(obj.Type() != nil)
    		return
    	}
    
    	d := check.objMap[obj]
    	if d == nil {
    		check.dump("%v: %s should have been declared", obj.Pos(), obj)
    		panic("unreachable")
    	}
    
    	// save/restore current environment and set up object environment
    	defer func(env environment) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    	return fmt.Sprintf("%s=%t reason:%s message:%s", c.Type, c.Status, c.Reason, c.Message)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    				// initialize a variable with the function.
    			}
    
    		default:
    			panic("unreachable")
    		}
    		assert(obj.Type() != nil)
    		return
    	}
    
    	d := check.objMap[obj]
    	if d == nil {
    		check.dump("%v: %s should have been declared", obj.Pos(), obj)
    		panic("unreachable")
    	}
    
    	// save/restore current environment and set up object environment
    	defer func(env environment) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top