Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,121 for below (0.04 sec)

  1. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    }
    [
    ]
    <
    >
    *
    #
    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (1)
  2. 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)
  3. src/html/template/attr.go

    	if strings.HasPrefix(name, "data-") {
    		// Strip data- so that custom attribute heuristics below are
    		// widely applied.
    		// Treat data-action as URL below.
    		name = name[5:]
    	} else if prefix, short, ok := strings.Cut(name, ":"); ok {
    		if prefix == "xmlns" {
    			return contentTypeURL
    		}
    		// Treat svg:href and xlink:href as href below.
    		name = short
    	}
    	if t, ok := attrTypeMap[name]; ok {
    		return t
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/github.com/google/pprof/third_party/svgpan/svgpan.go

    // SVG pan and zoom library.
    // See copyright notice in string constant below.
    
    package svgpan
    
    import _ "embed"
    
    // https://github.com/aleofreddi/svgpan
    
    //go:embed svgpan.js
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 196 bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers_test.go

    	expected := []*v1.Pod{exceeds, below}
    	for i := range expected {
    		if pods[i] != expected[i] {
    			t.Errorf("Expected pod: %s, but got: %s", expected[i].Name, pods[i].Name)
    		}
    	}
    }
    
    func TestOrderedByExceedsRequestDisk(t *testing.T) {
    	below := newPod("below-requests", -1, []v1.Container{
    		newContainer("below-requests", v1.ResourceList{v1.ResourceEphemeralStorage: resource.MustParse("200Mi")}, newResourceList("", "", "")),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/zh-tw/stopwords.txt

    }
    [
    ]
    <
    >
    *
    #
    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Cut.java

     * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily
     * "numbers") into two sections; this can be done below a certain value, above a certain value,
     * below all values or above all values. With this object defined in this way, an interval can
     * always be represented by a pair of {@code Cut} instances.
     *
     * @author Kevin Bourrillion
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. tools/certs/common.mk

    # Additional variables are defined in root-ca.conf target below.
    
    #------------------------------------------------------------------------
    # variables: intermediate CA
    INTERMEDIATE_DAYS ?= 3650
    INTERMEDIATE_KEYSZ ?= 4096
    INTERMEDIATE_ORG ?= Istio
    INTERMEDIATE_CN ?= Intermediate CA
    INTERMEDIATE_SAN_DNS ?= istiod.istio-system.svc
    # Additional variables are defined in %/intermediate.conf target below.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Cut.java

     * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily
     * "numbers") into two sections; this can be done below a certain value, above a certain value,
     * below all values or above all values. With this object defined in this way, an interval can
     * always be represented by a pair of {@code Cut} instances.
     *
     * @author Kevin Bourrillion
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top