Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for corerest (0.41 sec)

  1. cluster/gce/gci/configure-helper.sh

          local actual_device
          actual_device=$(readlink -f "${ssd}" | cut -d '/' -f 3)
          # Error checking
          if [[ "${actual_device}" != sd* ]]; then
            echo "'actual_device' is not of the correct format. It must be the kernel name of the device, got ${actual_device} instead" >&2
            exit 1
          fi
          local mountpoint="/mnt/disks/ssd${devicenum}"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	}
    	return newTestSignedRequestV4(method, urlStr, contentLength, body, accessKey, secretKey, nil)
    }
    
    // Returns request with correct signature but with incorrect SHA256.
    func newTestSignedBadSHARequest(method, urlStr string, contentLength int64, body io.ReadSeeker, accessKey, secretKey string, signer signerType) (*http.Request, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		vr := FileInfo{
    			Name:             objects[i].ObjectName,
    			VersionID:        objects[i].VersionID,
    			ReplicationState: objects[i].ReplicationState(),
    			// save the index to set correct error at this index.
    			Idx: i,
    		}
    		vr.SetTierFreeVersionID(mustGetUUID())
    		// VersionID is not set means delete is not specific about
    		// any version, look for if the bucket is versioned or not.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusBadRequest,
    			wantAPICode:        "XAmzContentChecksumMismatch",
    		},
    		// Correct crc32
    		9: {
    			bucketName:         bucketName,
    			objectName:         objectName,
    			headers:            map[string]string{"x-amz-checksum-crc32": checksumData(bytesData, crc32.New(crc32.IEEETable))},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	}
    	return ret
    }
    
    // resolveControllerRef returns the controller referenced by a ControllerRef,
    // or nil if the ControllerRef could not be resolved to a matching controller
    // of the correct Kind.
    func (jm *Controller) resolveControllerRef(namespace string, controllerRef *metav1.OwnerReference) *batch.Job {
    	// We can't look up by UID, so look up by Name and then verify UID.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // is handled, which can optionally require a general broadcast of the
    // 'bias' term in a way that is not compatible with the standard left-padded
    // broadcast semantics (i.e. NCHW will broadcast into dimension 1).
    // The correct 'bias' broadcast will be synthesized manually.
    class ConvertBiasAddOp : public OpRewritePattern<TF::BiasAddOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
      LogicalResult matchAndRewrite(TF::BiasAddOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		// and no one has complained.
    		// For 2, we need to ensure that if there might be partial overlap,
    		// then we can't use OpMove; we must use memmove instead.
    		// (memmove handles partial overlap by copying in the correct
    		// direction. OpMove does not.)
    		//
    		// Note that we have to be careful here not to introduce a call when
    		// we're marshaling arguments to a call or unmarshaling results from a call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    	// Check whether we do not return empty result on no-op update.
    	if !reflect.DeepEqual(createResult, updateResult) {
    		t.Errorf("no-op update should return a correct value, got: %#v", updateResult)
    	}
    
    	updatedPod, err := registry.Get(genericapirequest.NewDefaultContext(), "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //		in which case it is "atomic".
    //		The values:
    //		set: bool: does this statement run?
    //		count: int: how many times does this statement run?
    //		atomic: int: count, but correct in multithreaded tests;
    //			significantly more expensive.
    //		Sets -cover.
    //	-coverpkg pattern1,pattern2,pattern3
    //		For a build that targets package 'main' (e.g. building a Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ReplicateTensorListInitOpsPass : Pass<"tf-replicate-tensor-list-init-ops", "mlir::func::FuncOp"> {
      let summary =
        "Replicate TensorList init ops for correct shape assignments in shape inference";
    
      let description = [{
        If we pass same TensorList to a while op as multiple arguments or just use
        the same TensorList at multiple places and assign different
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top