Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 353 for below (0.09 sec)

  1. src/math/big/float.go

    		// 0 < x < +Inf
    		if x.exp <= 0 {
    			// 0 < x < 1
    			return 0, Below
    		}
    		// 1 <= x < Inf
    		if x.exp <= 64 {
    			// u = trunc(x) fits into a uint64
    			u := msb64(x.mant) >> (64 - uint32(x.exp))
    			if x.MinPrec() <= 64 {
    				return u, Exact
    			}
    			return u, Below // x truncated
    		}
    		// x too large
    		return math.MaxUint64, Below
    
    	case zero:
    		return 0, Exact
    
    	case inf:
    		if x.neg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  2. docs/logging/README.md

    ```
    
    NOTE: `http://endpoint:port/path` is a placeholder value to indicate the URL format, please change this accordingly as per your configuration.
    
    MinIO also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the MinIO server config.
    
    ```
    export MINIO_LOGGER_WEBHOOK_ENABLE_target1="on"
    export MINIO_LOGGER_WEBHOOK_AUTH_TOKEN_target1="token"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/first-steps.md

        You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
        A "decorator" takes the function below and does something with it.
    
        In our case, this decorator tells **FastAPI** that the function below corresponds to the **path** `/` with an **operation** `get`.
    
        It is the "**path operation decorator**".
    
    You can also use the other operations:
    
    * `@app.post()`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  4. pkg/kubelet/nodestatus/setters.go

    			// copied to the slice. So if we append to the slice here none of the
    			// updates we make below are reflected in the slice.
    			newCondition = true
    		}
    
    		// Update the heartbeat time
    		condition.LastHeartbeatTime = currentTime
    
    		// Note: The conditions below take care of the case when a new NodeMemoryPressure condition is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/go/types/predicates.go

    // This file implements commonly used type predicates.
    
    package types
    
    // isValid reports whether t is a valid type.
    func isValid(t Type) bool { return Unalias(t) != Typ[Invalid] }
    
    // The isX predicates below report whether t is an X.
    // If t is a type parameter the result is false; i.e.,
    // these predicates don't look inside a type parameter.
    
    func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/predicates.go

    // This file implements commonly used type predicates.
    
    package types2
    
    // isValid reports whether t is a valid type.
    func isValid(t Type) bool { return Unalias(t) != Typ[Invalid] }
    
    // The isX predicates below report whether t is an X.
    // If t is a type parameter the result is false; i.e.,
    // these predicates don't look inside a type parameter.
    
    func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/cmd/trace/goroutines.go

      border-collapse: collapse;
    }
    td,
    th {
      border: 1px solid black;
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Goroutines</h1>
    Below is a table of all goroutines in the trace grouped by start location and sorted by the total execution time of the group.<br>
    <br>
    Click a start location to view more details about that group.<br>
    <br>
    <table>
      <tr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    			// that makes sense when reported in error messages from infer, below.
    			expr := syntax.NewName(x.Pos(), T.desc)
    			args = []*operand{{mode: value, expr: expr, typ: T.sig}}
    			reverse = true
    		}
    
    		// Rename type parameters to avoid problems with recursive instantiations.
    		// Note that NewTuple(params...) below is (*Tuple)(nil) if len(params) == 0, as desired.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/go/types/call.go

    			// that makes sense when reported in error messages from infer, below.
    			expr := ast.NewIdent(T.desc)
    			expr.NamePos = x.Pos() // correct position
    			args = []*operand{{mode: value, expr: expr, typ: T.sig}}
    			reverse = true
    		}
    
    		// Rename type parameters to avoid problems with recursive instantiations.
    		// Note that NewTuple(params...) below is (*Tuple)(nil) if len(params) == 0, as desired.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. src/encoding/binary/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (littleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (littleEndian) AppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    func (littleEndian) Uint32(b []byte) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top