Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for replicaSet (0.43 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

        llvm::MapVector<BlockArgument, TF::TPUReplicatedInputOp> cache;
        for (auto input_op : func.getRegion().getOps<TF::TPUReplicatedInputOp>()) {
          // We're only expecting a single input argument to be replicated.
          if (input_op->getNumOperands() > 1) continue;
          Value operand = input_op->getOperand(0);
          if (!llvm::isa<BlockArgument>(operand)) continue;
          BlockArgument arg = llvm::dyn_cast<BlockArgument>(operand);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    type validator func(new, old *unstructured.Unstructured)
    
    func newValidator(customResourceValidation *apiextensionsinternal.JSONSchemaProps, kind schema.GroupVersionKind, namespaceScoped bool) (validator, error) {
    	// Replicate customResourceStrategy validation
    	openapiSchema := &spec.Schema{}
    	if customResourceValidation != nil {
    		// TODO: replace with NewStructural(...).ToGoOpenAPI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Adding a Configuration as a dependency in the `dependencies` DSL block, or programmatically using the `DependencyHandler` classes' `doAdd(Configuration, Object, Closure)` method, is no longer allowed and will fail with an exception.
    To replicate many aspects of this behavior, extend configurations using the `extendsFrom(Configuration)` method on `Configuration` instead.
    
    ==== Deprecated for consumption configurations are now non-consumable
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            } else if (exp instanceof AnnotationConstantExpression) {
                ConstantExpression ce = (ConstantExpression) exp;
                if (ce.getValue() instanceof AnnotationNode) {
                    // replicate a little bit of AnnotationVisitor here
                    // because we can't wait until later to do this
                    AnnotationNode an = (AnnotationNode) ce.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                                                    condition_send_recv_key);
          // device_ordinal0 is the ordinal of TPU_REPLICATED_CORE_0 and is only
          // used in the replicated case.
          Value device_ordinal0 = nullptr;
          if (!core_to_device_ordinal.empty())
            device_ordinal0 = core_to_device_ordinal[0];
          builder.setInsertionPointToEnd(&cond.front());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. src/time/format.go

    	valueCopy := stringslite.Clone(value)
    	valueElemCopy := stringslite.Clone(valueElem)
    	return &ParseError{layout, valueCopy, layoutElem, valueElemCopy, message}
    }
    
    // These are borrowed from unicode/utf8 and strconv and replicate behavior in
    // that package, since we can't take a dependency on either.
    const (
    	lowerhex  = "0123456789abcdef"
    	runeSelf  = 0x80
    	runeError = '\uFFFD'
    )
    
    func quote(s string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidEncryptionParametersSSEC: {
    		Code:           "InvalidRequest",
    		Description:    "SSE-C encryption parameters are not supported on replicated bucket.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidSSECustomerAlgorithm: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    		// if i <= paddingLen then the MSB of t is zero
    		mask := byte(int32(^t) >> 31)
    		b := payload[len(payload)-1-i]
    		good &^= mask&paddingLen ^ mask&b
    	}
    
    	// We AND together the bits of good and replicate the result across
    	// all the bits.
    	good &= good << 4
    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    			// Either way, we might now have too many instead of too few.
    			// Discard the extra.
    			if npattern > n {
    				pattern >>= npattern - n
    				npattern = n
    			}
    
    			// Replicate pattern to at most maxBits.
    			if npattern == 1 {
    				// One bit being repeated.
    				// If the bit is 1, make the pattern all 1s.
    				// If the bit is 0, the pattern is already all 0s,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    		{bucketName: bucket, objName: "none-object", uploadID: uploadID, PartID: 1, expectedError: fmt.Errorf("%s", "Invalid upload id "+uploadID)},
    		// Test case - 12.
    		// Input to replicate Md5 mismatch.
    		{
    			bucketName: bucket, objName: object, uploadID: uploadID, PartID: 1, inputMd5: "d41d8cd98f00b204e9800998ecf8427f",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top