Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for 0$ (0.07 sec)

  1. src/reflect/value.go

    	case Int:
    		*(*int)(v.ptr) = 0
    	case Int8:
    		*(*int8)(v.ptr) = 0
    	case Int16:
    		*(*int16)(v.ptr) = 0
    	case Int32:
    		*(*int32)(v.ptr) = 0
    	case Int64:
    		*(*int64)(v.ptr) = 0
    	case Uint:
    		*(*uint)(v.ptr) = 0
    	case Uint8:
    		*(*uint8)(v.ptr) = 0
    	case Uint16:
    		*(*uint16)(v.ptr) = 0
    	case Uint32:
    		*(*uint32)(v.ptr) = 0
    	case Uint64:
    		*(*uint64)(v.ptr) = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

      std::vector<int64_t> dims;
      dims.reserve(shape.dims());
      for (int i = 0; i < shape.dims(); ++i) {
        dims.push_back(shape.dim_size(i));
        nelems *= shape.dim_size(i);
      }
      CHECK_EQ(nelems, 0);
      return TF_NewTensor(
          dtype, reinterpret_cast<const int64_t*>(dims.data()), shape.dims(),
          reinterpret_cast<void*>(&empty), 0, [](void*, size_t, void*) {}, nullptr);
    }
    
    static void TF_Run_Helper(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    	}{
    		{numFailedPods: 0, numNormalPods: 1, expectedCreates: 0, expectedDeletes: 0, expectedEvents: 0, test: "normal (do nothing)"},
    		{numFailedPods: 0, numNormalPods: 0, expectedCreates: 1, expectedDeletes: 0, expectedEvents: 0, test: "no pods (create 1)"},
    		{numFailedPods: 1, numNormalPods: 0, expectedCreates: 0, expectedDeletes: 1, expectedEvents: 1, test: "1 failed pod (kill 1), 0 normal pod (create 0; will create in the next sync)"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	p2 := &x[j]
    	n := int(p1.as) - int(p2.as)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a1) - int(p2.a1)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a2) - int(p2.a2)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a3) - int(p2.a3)
    	if n != 0 {
    		return n < 0
    	}
    	n = int(p1.a4) - int(p2.a4)
    	if n != 0 {
    		return n < 0
    	}
    	return false
    }
    func opset(a, b obj.As) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    	response, err = s.client.Do(request)
    
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	request, err = newTestSignedRequest(http.MethodGet, getGetObjectURL(s.endPoint, bucketName, "my-object-directory/"),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    	// execute the HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // writeString adds a string to the string being printed.
    func (ps *printState) writeString(s string) {
    	if len(s) > 0 {
    		ps.last = s[len(s)-1]
    	}
    	ps.buf.WriteString(s)
    }
    
    // Print an AST.
    func (ps *printState) print(a AST) {
    	if ps.max > 0 && ps.buf.Len() > ps.max {
    		return
    	}
    
    	c := 0
    	for _, v := range ps.printing {
    		if v == a {
    			// We permit the type to appear once, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

            },
            "overrides": []
          },
          "gridPos": {
            "h": 6,
            "w": 12,
            "x": 0,
            "y": 0
          },
          "id": 52,
          "options": {
            "displayMode": "basic",
            "maxVizHeight": 300,
            "minVizHeight": 10,
            "minVizWidth": 0,
            "namePlacement": "auto",
            "orientation": "horizontal",
            "reduceOptions": {
              "calcs": [
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		podIP := ""
    		if len(pod.Status.PodIPs) > 0 {
    			podIP = pod.Status.PodIPs[0].IP
    		}
    
    		if podIP == "" {
    			podIP = "<none>"
    		}
    		if nodeName == "" {
    			nodeName = "<none>"
    		}
    		if nominatedNodeName == "" {
    			nominatedNodeName = "<none>"
    		}
    
    		readinessGates := "<none>"
    		if len(pod.Spec.ReadinessGates) > 0 {
    			trueConditions := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	assert.Len(t, manager.GetPods(), 0, "Expected 0 mirror pods")
    	for i, pod := range orphanPods {
    		name := kubecontainer.GetPodFullName(pod)
    		creates, deletes := manager.GetCounts(name)
    		switch i {
    		case 2:
    			if creates != 0 || deletes != 0 {
    				t.Errorf("expected 0 creation and 0 deletion of %q, got %d, %d", name, creates, deletes)
    			}
    		default:
    			if creates != 0 || deletes != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (r0_ty && r0_ty.hasStaticShape() && r0_ty.getDimSize(0) != r0.size())
        return op.emitOpError() << "requires dimension 0 size of 'r0' to be "
                                << r0.size() << " but got " << r0_ty.getShape()[0];
      if (r1_ty && r1_ty.hasStaticShape() && r1_ty.getDimSize(0) != r1.size())
        return op.emitOpError() << "requires dimension 0 size of 'r1' to be "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top