Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for rat (0.12 sec)

  1. src/math/big/ratmarsh.go

    }
    
    // GobDecode implements the [encoding/gob.GobDecoder] interface.
    func (z *Rat) GobDecode(buf []byte) error {
    	if len(buf) == 0 {
    		// Other side sent a nil or default value.
    		*z = Rat{}
    		return nil
    	}
    	if len(buf) < 5 {
    		return errors.New("Rat.GobDecode: buffer too small")
    	}
    	b := buf[0]
    	if b>>1 != ratGobVersion {
    		return fmt.Errorf("Rat.GobDecode: encoding version %d not supported", b>>1)
    	}
    	const j = 1 + 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/math/big/float.go

    		return nil, makeAcc(x.neg)
    	}
    
    	panic("unreachable")
    }
    
    // Rat returns the rational number corresponding to x;
    // or nil if x is an infinity.
    // The result is [Exact] if x is not an Inf.
    // If a non-nil *[Rat] argument z is provided, [Rat] stores
    // the result in z instead of allocating a new [Rat].
    func (x *Float) Rat(z *Rat) (*Rat, Accuracy) {
    	if debugFloat {
    		x.validate()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  6. docs/vi/docs/python-types.md

    Đây chỉ là một **hướng dẫn nhanh** về gợi ý kiểu dữ liệu trong Python. Nó chỉ bao gồm những điều cần thiết tối thiểu để sử dụng chúng với **FastAPI**... đó thực sự là rất ít.
    
    **FastAPI** hoàn toàn được dựa trên những gợi ý kiểu dữ liệu, chúng mang đến nhiều ưu điểm và lợi ích.
    
    Nhưng thậm chí nếu bạn không bao giờ sử dụng **FastAPI**, bạn sẽ được lợi từ việc học một ít về chúng.
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. maven-core/pom.xml

            <directory>src/main/resources</directory>
          </resource>
        </resources>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
              <configuration>
                <excludes combine.children="append">
                  <exclude>lifecycle-executor.txt</exclude>
                  <exclude>plugin-manager.txt</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. src/crypto/internal/mlkem768/mlkem768_test.go

    	precise := big.NewRat((1<<d)*int64(x), q) // (2ᵈ / q) * x == (2ᵈ * x) / q
    
    	// FloatString rounds halves away from 0, and our result should always be positive,
    	// so it should work as we expect. (There's no direct way to round a Rat.)
    	rounded, err := strconv.ParseInt(precise.FloatString(0), 10, 64)
    	if err != nil {
    		panic(err)
    	}
    
    	// If we rounded up, `rounded` may be equal to 2ᵈ, so we perform a final reduction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 15:27:18 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pom.xml

                lifecycle.</charter>
              </asfExtOptions>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.apache.rat</groupId>
            <artifactId>apache-rat-plugin</artifactId>
            <executions>
              <execution>
                <id>rat-check</id>
                <inherited>false</inherited>
                <configuration>
                  <excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    				t.Errorf("%s: got %s; want %s", test.x, got, x)
    			}
    		}
    	}
    
    	// check that supplied *Rat is used
    	for _, f := range []string{"0", "1", "-1", "1234"} {
    		x := makeFloat(f)
    		r := new(Rat)
    		if res, _ := x.Rat(r); res != r {
    			t.Errorf("(%s).Rat is not using supplied *Rat", f)
    		}
    	}
    }
    
    func TestFloatAbs(t *testing.T) {
    	for _, test := range []string{
    		"0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top