Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for numCtrs (0.22 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the mean refrangible Rays, and their Proportion in round Numbers is 20 to 31. This Glass was of a Colour inclining to green. The last of the Prisms mentioned in the third Experiment was of clear white Glass. Its refracting Angle 63-1/2 Degrees. The Angle which the emergent Rays contained, with the incident 45 deg. 50 min. The Sine of half the first Angle 5262. The Sine of half the Sum of the Angles 8157. And their Proportion in round Numbers 20 to 31, as before. From the Length of the Image, which...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Computes the complex absolute value of a tensor.";
    
      let description = [{
    Given a tensor `x` of complex numbers, this operation returns a tensor of type
    `float` or `double` that is the absolute value of each element in `x`. All
    elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
    value is computed as \\( \sqrt{a^2 + b^2}\\).
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    float32     the set of all IEEE 754 32-bit floating-point numbers
    float64     the set of all IEEE 754 64-bit floating-point numbers
    
    complex64   the set of all complex numbers with float32 real and imaginary parts
    complex128  the set of all complex numbers with float64 real and imaginary parts
    
    byte        alias for uint8
    rune        alias for int32
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

                                  op->getResult(0));
      return op->getResult(0).getType().cast<TensorType>().clone(
          new_result_quantized_type);
    }
    
    // Matches kernel dimension numbers, ranks of input and output and constant
    // kernel for legalization to TFLite convolution ops.
    LogicalResult MatchConvolutionFormat(stablehlo::ConvolutionOp op) {
      stablehlo::ConvDimensionNumbersAttr dimension_numbers =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

            .url(server.url("/"))
            .method("POST", requestBody2)
            .build()
        val response2 = client.newCall(request2).execute()
        assertThat(response2.code).isEqualTo(200)
    
        // Use sequence numbers to confirm the connection was pooled.
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(0)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    capitalization.)\n\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // information would be lost. While Scan stringifies all numbers
    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    // not into a uint8, though float64(255) or "255" can scan into a
    // uint8. One exception is that scans of some float64 numbers to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    				to = filepath.Join("/_", toPath)
    			}
    			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
    		}
    	}
    
    	// Tell gcc to not insert truly random numbers into the build process
    	// this ensures LTO won't create random numbers for symbols.
    	if b.gccSupportsFlag(compiler, "-frandom-seed=1") {
    		flags = append(flags, "-frandom-seed="+buildid.HashToString(a.actionID))
    	}
    
    	overlayPath := file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    type BytesChanRecv <-chan []byte
    type BytesChanSend chan<- []byte
    
    var convertTests = []struct {
    	in  Value
    	out Value
    }{
    	// numbers
    	/*
    		Edit .+1,/\*\//-1>cat >/tmp/x.go && go run /tmp/x.go
    
    		package main
    
    		import "fmt"
    
    		var numbers = []string{
    			"int8", "uint8", "int16", "uint16",
    			"int32", "uint32", "int64", "uint64",
    			"int", "uint", "uintptr",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			},
    			errors: map[string]string{
    				"self.val1 + 1 == 0": "integer overflow",
    				"self.val5 + 1 == 0": "integer overflow",
    				"1 / 0 == 1 / 0":     "division by zero",
    			},
    		},
    		{name: "numbers",
    			obj:    objs(math.MaxFloat64, math.MaxFloat64, math.MaxFloat32, math.MaxFloat32, math.MaxFloat64, math.MaxFloat64, int64(1)),
    			schema: schemas(numberType, numberType, floatType, floatType, doubleType, doubleType, doubleType),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top