Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for rat (0.02 sec)

  1. 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)
  2. cmd/update_test.go

    		}
    		if err = tmpfile.Close(); err != nil {
    			t.Fatalf("Unable to create temporary file. %s", err)
    		}
    		return tmpfile.Name()
    	}
    
    	filename := createTempFile(
    		`app="virtuous-rat-minio"
    chart="minio-0.1.3"
    heritage="Tiller"
    pod-template-hash="818089471"`)
    
    	defer os.Remove(filename)
    
    	testCases := []struct {
    		filename       string
    		expectedResult string
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. docs/vi/docs/index.md

    ---
    
    FastAPI là một web framework hiện đại, hiệu năng cao để xây dựng web APIs với Python dựa trên tiêu chuẩn Python type hints.
    
    Những tính năng như:
    
    * **Nhanh**: Hiệu năng rất cao khi so sánh với **NodeJS** và **Go** (cảm ơn Starlette và Pydantic). [Một trong những Python framework nhanh nhất](#hieu-nang).
    * **Code nhanh**: Tăng tốc độ phát triển tính năng từ 200% tới 300%. *
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/shifts.go

    		x := int64(ux)
    		if x&(1<<(bits-1)) != 0 {}
    	}
    
    	// from src/encoding/asn1/asn1.go:160
    	{
    		var bytes []byte
    		if bytes[len(bytes)-1]&((1<<bytes[0])-1) != 0 {}
    	}
    
    	// from src/math/big/rat.go:140
    	{
    		var exp int
    		var mantissa uint64
    		shift := uint64(-1022 - (exp - 1)) // [1..53)
    		_ = mantissa & (1<<shift - 1)
    	}
    
    	// from src/net/interface.go:51
    	{
    		type Flags uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/internal/pkgbits/decoder.go

    	case ValInt64:
    		return constant.MakeInt64(r.Int64())
    	case ValBigInt:
    		return constant.Make(r.bigInt())
    	case ValBigRat:
    		num := r.bigInt()
    		denom := r.bigInt()
    		return constant.Make(new(big.Rat).SetFrac(num, denom))
    	case ValBigFloat:
    		return constant.Make(r.bigFloat())
    	}
    }
    
    func (r *Decoder) bigInt() *big.Int {
    	v := new(big.Int).SetBytes([]byte(r.String()))
    	if r.Bool() {
    		v.Neg(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
Back to top