Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for OP (0.12 sec)

  1. src/main/webapp/js/admin/popper.min.js.map

    values (in px)\n        .map(str => toValue(str, measurement, popperOffsets, referenceOffsets))\n    );\n  });\n\n  // Loop trough the offsets arrays and execute the operations\n  ops.forEach((op, index) => {\n    op.forEach((frag, index2) => {\n      if (isNumeric(frag)) {\n        offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n      }\n    });\n  });\n  return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

       func.return
      }
    
      // Test resource result subtypes are propagated to call op results.
      // CHECK-LABEL: func @pcall_resource_result
      func.func @pcall_resource_result(%arg0: tensor<*x!tf_type.resource<tensor<f32>>>) {
        // CHECK: "tf.StatefulPartitionedCall"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		// Use allocated resources values from checkpoint store (source of truth) to determine fit
    		otherPods := make([]*v1.Pod, 0, len(pods))
    		for _, p := range pods {
    			op := p.DeepCopy()
    			kl.updateContainerResourceAllocation(op)
    
    			otherPods = append(otherPods, op)
    		}
    		attrs.OtherPods = otherPods
    	}
    	for _, podAdmitHandler := range kl.admitHandlers {
    		if result := podAdmitHandler.Admit(attrs); !result.Admit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    	"k8s.io/kubernetes/pkg/scheduler/metrics"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	preEnqueuePlugin                  = "preEnqueue-plugin"
    	queueSortPlugin                   = "no-op-queue-sort-plugin"
    	scoreWithNormalizePlugin1         = "score-with-normalize-plugin-1"
    	scoreWithNormalizePlugin2         = "score-with-normalize-plugin-2"
    	scorePlugin1                      = "score-plugin-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	R_ALPHA_SREL64         R_ALPHA = 11 /* PC relative 64 bit */
    	R_ALPHA_OP_PUSH        R_ALPHA = 12 /* OP stack push */
    	R_ALPHA_OP_STORE       R_ALPHA = 13 /* OP stack pop and store */
    	R_ALPHA_OP_PSUB        R_ALPHA = 14 /* OP stack subtract */
    	R_ALPHA_OP_PRSHIFT     R_ALPHA = 15 /* OP stack right shift */
    	R_ALPHA_GPVALUE        R_ALPHA = 16
    	R_ALPHA_GPRELHIGH      R_ALPHA = 17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    }
    
    func (o ObjectInfo) getMustReplicateOptions(op replication.Type, opts ObjectOptions) mustReplicateOptions {
    	return getMustReplicateOptions(o.UserDefined, o.UserTags, o.ReplicationStatus, op, opts)
    }
    
    func getMustReplicateOptions(userDefined map[string]string, userTags string, status replication.StatusType, op replication.Type, opts ObjectOptions) mustReplicateOptions {
    	meta := cloneMSS(userDefined)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	// At this point, the local bucket is deleted.
    
    	c.RLock()
    	defer c.RUnlock()
    	if !c.enabled {
    		return nil
    	}
    
    	op := madmin.DeleteBucketBktOp
    	if forceDelete {
    		op = madmin.ForceDeleteBucketBktOp
    	}
    
    	// Send bucket delete to other clusters.
    	cerr := c.concDo(nil, func(deploymentID string, p madmin.PeerInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // CHECK-SAME: %[[ARG:.+]]: tensor<1x3x3x4x!quant.uniform<i8:f32, 1.000000e+00:-100>>
    // CHECK: stablehlo.convolution
    // CHECK-NOT: tfl.conv_2d
    
    // -----
    
    // Tests that if the window padding contains values of 0, tfl.pad op is not
    // created and the `padding` attribute is set as "VALID".
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  9. 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{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    unknown: baz`)
    
    		invalidMergePatch = []byte(`{"labels":{"foo":"bar"}, "unknown": "foo", "other": "foo", "other": "bar"}`)
    		invalidJSONPatch  = []byte(`
    [
    	{"op": "add", "path": "/unknown", "value": "foo"},
    	{"op": "add", "path": "/other", "value": "foo"},
    	{"op": "add", "path": "/other", "value": "bar"}
    	]
    	`)
    		// note: duplicate fields in the patch itself
    		// are dropped by the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
Back to top