Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for shardKey (0.16 sec)

  1. src/crypto/tls/handshake_client_tls13.go

    			return errors.New("tls: invalid Kyber server key share")
    		}
    		sharedKey = append(sharedKey, kyberShared...)
    	}
    	c.curveID = hs.serverHello.serverShare.group
    
    	earlySecret := hs.earlySecret
    	if !hs.usingPSK {
    		earlySecret = hs.suite.extract(nil, nil)
    	}
    
    	handshakeSecret := hs.suite.extract(sharedKey,
    		hs.suite.deriveSecret(earlySecret, "derived", nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/unique/handle_test.go

    // license that can be found in the LICENSE file.
    
    package unique
    
    import (
    	"fmt"
    	"internal/abi"
    	"reflect"
    	"runtime"
    	"testing"
    )
    
    // Set up special types. Because the internal maps are sharded by type,
    // this will ensure that we're not overlapping with other tests.
    type testString string
    type testIntArray [4]int
    type testEface any
    type testStringArray [3]string
    type testStringStruct struct {
    	a string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    <author>rsc</author>
    <date>2017-09-27T18:00:52.201719Z</date>
    <msg>git</msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. docs/erasure/README.md

    Erasure code is a mathematical algorithm to reconstruct missing or corrupted data. MinIO uses Reed-Solomon code to shard objects into variable data and parity blocks. For example, in a 12 drive setup, an object can be sharded to a variable number of data and parity blocks across all the drives - ranging from six data and six parity blocks to ten data and two parity blocks.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

            c.text = p.text
          p.getparent().remove(p)
        # Remove duplicate results of the same exact test (e.g. due to retry
        # attempts)
        for p in testsuite._elem.xpath(".//error | .//failure"):
          # Sharded tests have target names like this:
          # WindowOpsTest.test_tflite_convert0 (<function hann_window at
          #     0x7fc61728dd40>, 10, False, tf.float32)
          # Where 0x... is a thread ID (or something) that is not important for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.h

    // A sharding with OTHER type may be REPLICATED if:
    // 'replicate_on_last_tile_dim' is true OR
    // 'last_tile_dims' is not empty
    // AND
    // other than replicated last tile dims, all other dims are not sharded.
    bool IsOtherReplicatedSharding(const xla::OpSharding& xla_sharding);
    
    // Returns whether the sharding is split sharding. i.e. A sharding with OTHER
    // type but not replicated.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:18:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    <date>2017-09-22T15:41:54.145716Z</date>
    <msg>add modified git-README-only</msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/ifrt/rewrite_cluster_to_ifrt_call.mlir

      return
    }
    
    // CHECK-LABEL: @_func
    func.func private @_func(%arg0: tensor<1x3xf32>) -> () {
      return
    }
    }
    
    // -----
    // Multiple ifrt calls and have two sharded arguments
    
    // CHECK-LABEL: func.func @serving_default(%arg0: tensor<3x1xf32>, %arg1: tensor<1x3xf32>) -> tensor<1x1xf32> {
    // CHECK-NEXT:  %0 = "tf.IfrtCall"(%arg1, %arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 17 07:28:40 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/crypto/internal/mlkem768/mlkem768.go

    // The shared key must be kept secret.
    func Encapsulate(encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    	// The actual logic is in a separate function to outline this allocation.
    	var cc [CiphertextSize]byte
    	return encapsulate(&cc, encapsulationKey)
    }
    
    func encapsulate(cc *[CiphertextSize]byte, encapsulationKey []byte) (ciphertext, sharedKey []byte, err error) {
    	if len(encapsulationKey) != EncapsulationKeySize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. docs/distributed/DESIGN.md

    - Erasure set is a single erasure coding unit within a MinIO deployment. An object is sharded within an erasure set. Erasure set size is automatically calculated based on the number of drives. MinIO supports unlimited number of drives but each erasure set can be upto 16 drives and a minimum of 2 drives.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top