Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,936 for opus (0.05 sec)

  1. istioctl/pkg/tag/generate.go

    func Generate(ctx context.Context, client kube.Client, opts *GenerateOptions, istioNS string) (string, error) {
    	// abort if there exists a revision with the target tag name
    	revWebhookCollisions, err := GetWebhooksWithRevision(ctx, client.Kube(), opts.Tag)
    	if err != nil {
    		return "", err
    	}
    	if !opts.Generate && !opts.Overwrite &&
    		len(revWebhookCollisions) > 0 && opts.Tag != DefaultRevisionName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:49 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. cmd/peer-rest-client.go

    func (client *peerRESTClient) SpeedTest(ctx context.Context, opts speedTestOpts) (SpeedTestResult, error) {
    	values := make(url.Values)
    	values.Set(peerRESTSize, strconv.Itoa(opts.objectSize))
    	values.Set(peerRESTConcurrent, strconv.Itoa(opts.concurrency))
    	values.Set(peerRESTDuration, opts.duration.String())
    	values.Set(peerRESTStorageClass, opts.storageClass)
    	values.Set(peerRESTBucket, opts.bucketName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    				if cpus.Intersection(availableCPUs).Size() > 0 {
    					t.Errorf("expected intersection of taken cpus [%s] and acc.details.CPUs() [%s] to be empty", cpus, availableCPUs)
    				}
    				if !cpus.IsSubsetOf(acc.result) {
    					t.Errorf("expected [%s] to be a subset of acc.result [%s]", cpus, acc.result)
    				}
    			}
    			expNumCPUsNeeded := tc.numCPUs - totalTaken
    			if acc.numCPUsNeeded != expNumCPUsNeeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    			// for our name.
    			if opts.FieldSelector != nil && !opts.FieldSelector.Empty() {
    				selectedName, ok := opts.FieldSelector.RequiresExactMatch("metadata.name")
    				if !ok || name != selectedName {
    					scope.err(errors.NewBadRequest("fieldSelector metadata.name doesn't match requested name"), w, req)
    					return
    				}
    			} else {
    				opts.FieldSelector = nameSelector
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/fold_broadcast.cc

      auto matmul_op = llvm::dyn_cast<TF::BatchMatMulV2Op>(op);
      if (!matmul_op) return failure();
    
      // Gets the broadcasted output shape for tf.BatchMatMulV2Op. `shape_x` is the
      // shape of op's first/left-hand-side operand and `shape_y` is the shape of
      // op's second/right-hand-side operand.
      const auto get_broadcasted_shape =
          [&](ArrayRef<int64_t> shape_x, ArrayRef<int64_t> shape_y,
              SmallVectorImpl<int64_t>& result_shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_tensor_helper.cc

    namespace TF {
    
    class IdentityOp;
    class IdentityNOp;
    
    // Returns the RankedTensorType for the given operand. TensorFlow constant ops
    // may have non-static shape because the shape is not propagated during constant
    // folding. If the defining op for the given operand is a constant op, this
    // routine uses the constant op's attribute to get the actual shape.
    RankedTensorType GetRankedTensorTypeForOperand(Value operand) {
      DenseElementsAttr attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. cmd/notification.go

    		if report == nil || report.BucketStats == nil {
    			continue
    		}
    		for opts := range report.BucketStats {
    			d, ok := consolidatedReport.BucketStats[opts]
    			if !ok {
    				d = bandwidth.Details{
    					LimitInBytesPerSecond: report.BucketStats[opts].LimitInBytesPerSecond,
    				}
    			}
    			dt, ok := report.BucketStats[opts]
    			if ok {
    				d.CurrentBandwidthInBytesPerSecond += dt.CurrentBandwidthInBytesPerSecond
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue4326.dir/p1.go

    package p1
    
    type O map[string]map[string]string
    
    func (opts O) RemoveOption(sect, opt string) bool {
    	if _, ok := opts[sect]; !ok {
    		return false
    	}
    	_, ok := opts[sect][opt]
    	delete(opts[sect], opt)
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 07 14:59:19 UTC 2012
    - 214 bytes
    - Viewed (0)
  9. tests/integration/security/https_jwt/https_jwt_test.go

    				customizeCall func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions)
    			}{
    				{
    					name:       "valid-token-forward-remote-jwks",
    					policyFile: "./testdata/remotehttps.yaml.tmpl",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    						opts.HTTP.Headers = headers.New().WithAuthz(jwt.TokenIssuer1).Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/flags.go

    	}
    
    	if opts.registerTaintsUsingFlags && opts.nodeRegOpts.Taints != nil && len(opts.nodeRegOpts.Taints) > 0 {
    		taintStrs := []string{}
    		for _, taint := range opts.nodeRegOpts.Taints {
    			taintStrs = append(taintStrs, taint.ToString())
    		}
    		kubeletFlags = append(kubeletFlags, kubeadmapi.Arg{Name: "register-with-taints", Value: strings.Join(taintStrs, ",")})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top