Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 607 for bkts (0.04 sec)

  1. cmd/erasure-server-pool-decom_gen.go

    		case "st":
    			z.StartTime, bts, err = msgp.ReadTimeBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "StartTime")
    				return
    			}
    		case "ss":
    			z.StartSize, bts, err = msgp.ReadInt64Bytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "StartSize")
    				return
    			}
    		case "ts":
    			z.TotalSize, bts, err = msgp.ReadInt64Bytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-decom.go

    	Failed   bool `json:"failed" msg:"fl"`
    	Canceled bool `json:"canceled" msg:"cnl"`
    
    	// Internal information.
    	QueuedBuckets         []string `json:"-" msg:"bkts"`
    	DecommissionedBuckets []string `json:"-" msg:"dbkts"`
    
    	// Last bucket/object decommissioned.
    	Bucket string `json:"-" msg:"bkt"`
    	// Captures prefix that is currently being
    	// decommissioned inside the 'Bucket'
    	Prefix string `json:"-" msg:"pfx"`
    	Object string `json:"-" msg:"obj"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  3. src/math/bits/bits.go

    // To rotate x right by k bits, call RotateLeft8(x, -k).
    //
    // This function's execution time does not depend on the inputs.
    func RotateLeft8(x uint8, k int) uint8 {
    	const n = 8
    	s := uint(k) & (n - 1)
    	return x<<s | x>>(n-s)
    }
    
    // RotateLeft16 returns the value of x rotated left by (k mod 16) bits.
    // To rotate x right by k bits, call RotateLeft16(x, -k).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    add them to //tensorflow/tools/pip_package/BUILD. Otherwise, add the no_pip tag
    to the test, or change code_check_full.bats in the SIG Build repository. That's
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. ci/official/utilities/code_check_full.bats

    add them to //tensorflow/tools/pip_package/BUILD. Otherwise, add the no_pip tag
    to the test, or change code_check_full.bats in the SIG Build repository. That's
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/tools/tf_sig_build_dockerfiles/devel.usertools/code_check_full.bats
    Here are the affected tests:
    EOF
        while read dep; do
          echo "For dependency $dep:"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. settings.gradle.kts

        id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
        id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
    //    id("net.ltgt.errorprone").version("3.1.0")
    }
    
    includeBuild("build-logic-commons")
    includeBuild("build-logic")
    
    apply(from = "gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-v1_gen.go

    		case "Algorithm":
    			z.Algorithm, bts, err = msgp.ReadStringBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "Algorithm")
    				return
    			}
    		case "DataBlocks":
    			z.DataBlocks, bts, err = msgp.ReadIntBytes(bts)
    			if err != nil {
    				err = msgp.WrapError(err, "DataBlocks")
    				return
    			}
    		case "ParityBlocks":
    			z.ParityBlocks, bts, err = msgp.ReadIntBytes(bts)
    			if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    ├── gradlew // <3>
    ├── gradlew.bat // <3>
    ├── settings.gradle.kts // <4>
    ├── buildSrc
    │   ├── build.gradle.kts // <5>
    │   ├── settings.gradle.kts // <5>
    │   └── src
    │       └── main
    │           └── kotlin // <6>
    │               ├── buildlogic.${languageLC.raw}-application-conventions.gradle.kts
    │               ├── buildlogic.${languageLC.raw}-common-conventions.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/README.md

        ├── customLogger.sample.conf
        ├── groovy
        │   ├── build.gradle
        │   ├── init.gradle
        │   └── settings.gradle
        └── kotlin
            ├── build.gradle.kts
            ├── customLogger.init.gradle.kts
            └── settings.gradle.kts
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p224_fiat64.go

    	var x39 uint64
    	var x40 uint64
    	x39, x40 = bits.Add64(x17, x30, uint64(p224Uint1(x38)))
    	var x41 uint64
    	var x42 uint64
    	x41, x42 = bits.Add64(x19, x32, uint64(p224Uint1(x40)))
    	var x43 uint64
    	var x44 uint64
    	x44, x43 = bits.Mul64(x1, arg2[3])
    	var x45 uint64
    	var x46 uint64
    	x46, x45 = bits.Mul64(x1, arg2[2])
    	var x47 uint64
    	var x48 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 43.2K bytes
    - Viewed (0)
Back to top