Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for below (0.04 sec)

  1. src/math/big/float_test.go

    		{"+0", "0", Exact},
    		{"-0", "0", Exact},
    		{"Inf", "nil", Below},
    		{"+Inf", "nil", Below},
    		{"-Inf", "nil", Above},
    		{"1", "1", Exact},
    		{"-1", "-1", Exact},
    		{"1.23", "1", Below},
    		{"-1.23", "-1", Above},
    		{"123e-2", "1", Below},
    		{"123e-3", "0", Below},
    		{"123e-4", "0", Below},
    		{"1e-1000", "0", Below},
    		{"-1e-1000", "0", Above},
    		{"1e+10", "10000000000", Exact},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais2.go

    	return freq
    }
    
    func bucketMin_8_64(text []byte, freq, bucket []int64) {
    	freq = freq_8_64(text, freq, bucket)
    	freq = freq[:256]     // establish len(freq) = 256, so 0 ≤ i < 256 below
    	bucket = bucket[:256] // eliminate bounds check for bucket[i] below
    	total := int64(0)
    	for i, n := range freq {
    		bucket[i] = total
    		total += n
    	}
    }
    
    func bucketMin_32(text []int32, freq, bucket []int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```
    KEY:
    notify_amqp[:name]  publish bucket notifications to AMQP endpoints
    
    ARGS:
    url*           (url)       AMQP server endpoint e.g. `amqp://myuser:mypassword@localhost:5672`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/runtime/mgcscavenge.go

    // that memory limit. For that, we look at total memory that has been committed
    // (memstats.mappedReady) and try to bring that down below the limit. In this case,
    // we want to give buffer space in the *opposite* direction. When the application
    // is close to the limit, we want to make sure we push harder to keep it under, so
    // if we target below the memory limit, we ensure that the background scavenger is
    // giving the situation the urgency it deserves.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                    String rawChildModelVersion = childModel.getVersion();
    
                    if (rawChildModelVersion == null) {
                        // Message below is checked for in the MNG-2199 core IT.
                        problems.add(
                                Severity.FATAL,
                                ModelProblem.Version.V31,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    				// init expression/func declaration which contains
    				// them: use existing package-level declaration info.
    				decl := check.decl // capture for use in closure below
    				iota := check.iota // capture for use in closure below (go.dev/issue/22345)
    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. src/go/types/expr.go

    				// init expression/func declaration which contains
    				// them: use existing package-level declaration info.
    				decl := check.decl // capture for use in closure below
    				iota := check.iota // capture for use in closure below (go.dev/issue/22345)
    				// Don't type-check right away because the function may
    				// be part of a type definition to which the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    String rawChildModelVersion = childModel.getVersion();
    
                    if (rawChildModelVersion == null) {
                        // Message below is checked for in the MNG-2199 core IT.
                        problems.add(new ModelProblemCollectorRequest(Severity.FATAL, ModelProblem.Version.V31)
                                .setMessage("Version must be a constant")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                if (logger.isDebugEnabled()) {
                                    // Message below is checked for in the MNG-2199 core IT.
                                    logger.warn("Failed to build parent project for " + project.getId(), e);
                                } else {
                                    // Message below is checked for in the MNG-2199 core IT.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            rewriter.getIntegerAttr(attribute_type,
                                    strided_slice_op.getShrinkAxisMask()));
    
        return success();
      }
    };
    
    
    // The below pattern is equivalent to the DRR rule below
    // The checks are dependent on generated values, so we can't add
    // the checks on intermediate values, ideally we should find equivalent
    // checks that guarantees the resultant ops are valid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
Back to top