Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for Rat (0.02 sec)

  1. test/fixedbugs/bug071.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bug071
    
    type rat struct  {
    	den  int;
    }
    
    func (u *rat) pr() {
    }
    
    type dch struct {
    	dat chan  *rat;
    }
    
    func dosplit(in *dch){
    	dat := <-in.dat;
    	_ = dat;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 336 bytes
    - Viewed (0)
  2. src/math/big/ratconv.go

    // license that can be found in the LICENSE file.
    
    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/vi/stopwords.txt

    do
    đó
    được
    dưới
    gì
    khi
    không
    là
    lại
    lên
    lúc
    mà
    mỗi
    một cách
    này
    nên
    nếu
    ngay
    nhiều
    như
    nhưng
    những
    nơi
    nữa
    phải
    qua
    ra
    rằng
    rằng
    rất
    rất
    rồi
    sau
    sẽ
    so
    sự
    tại
    theo
    thì
    trên
    trước
    từ
    từng
    và
    vẫn
    vào
    vậy
    vì
    việc
    với
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 457 bytes
    - Viewed (0)
  4. pom.xml

    						<phase>prepare-package</phase>
    						<goals>
    							<goal>report</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<groupId>org.apache.rat</groupId>
    				<artifactId>apache-rat-plugin</artifactId>
    				<version>0.14</version>
    				<executions>
    					<execution>
    						<phase>verify</phase>
    						<goals>
    							<goal>check</goal>
    						</goals>
    					</execution>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 26 04:00:03 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/math/big/link_test.go

    package big
    
    import (
    	"bytes"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"testing"
    )
    
    // Tests that the linker is able to remove references to Float, Rat,
    // and Int if unused (notably, not used by init).
    func TestLinkerGC(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	t.Parallel()
    	tmp := t.TempDir()
    	goBin := testenv.GoToolPath(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 15:51:26 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  6. maven-bom/pom.xml

            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.rat</groupId>
            <artifactId>apache-rat-plugin</artifactId>
            <executions>
              <execution>
                <id>rat-check</id>
                <phase>none</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/math/big/example_test.go

    // license that can be found in the LICENSE file.
    
    package big_test
    
    import (
    	"fmt"
    	"log"
    	"math"
    	"math/big"
    )
    
    func ExampleRat_SetString() {
    	r := new(big.Rat)
    	r.SetString("355/113")
    	fmt.Println(r.FloatString(3))
    	// Output: 3.142
    }
    
    func ExampleInt_SetString() {
    	i := new(big.Int)
    	i.SetString("644", 8) // octal
    	fmt.Println(i)
    	// Output: 420
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 26 16:15:32 UTC 2020
    - 4K bytes
    - Viewed (0)
  8. src/go/constant/value.go

    func (intVal) implementsValue()     {}
    func (floatVal) implementsValue()   {}
    func (complexVal) implementsValue() {}
    
    func newInt() *big.Int     { return new(big.Int) }
    func newRat() *big.Rat     { return new(big.Rat) }
    func newFloat() *big.Float { return new(big.Float).SetPrec(prec) }
    
    func i64toi(x int64Val) intVal   { return intVal{newInt().SetInt64(int64(x))} }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  9. apache-maven/pom.xml

      </pluginRepositories>
    
      <build>
        <finalName>${distributionFileName}</finalName>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. test/abi/idata.go

    package main
    
    import (
    	"fmt"
    	"math"
    	"math/big"
    )
    
    type (
    	unknownVal struct{}
    	intVal     struct{ val *big.Int }   // Int values not representable as an int64
    	ratVal     struct{ val *big.Rat }   // Float values representable as a fraction
    	floatVal   struct{ val *big.Float } // Float values not representable as a fraction
    	complexVal struct{ re, im Value }
    )
    
    const prec = 512
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 20:11:08 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top