Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 66 for prof (0.05 sec)

  1. src/math/big/int_test.go

    		if int64(r.a) < 0 || int64(r.b) < 0 {
    			continue
    		}
    		prod := tmp.MulRange(int64(r.a), int64(r.b)).String()
    		if prod != r.prod {
    			t.Errorf("#%da: got %s; want %s", i, prod, r.prod)
    		}
    	}
    	// test other ranges
    	for i, r := range mulRangesZ {
    		prod := tmp.MulRange(r.a, r.b).String()
    		if prod != r.prod {
    			t.Errorf("#%db: got %s; want %s", i, prod, r.prod)
    		}
    	}
    }
    
    func TestBinomial(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

      // = group_size
      auto input_shape = Shape(scope, op.input(0));
      auto output_shape = Shape(scope, op.output(0));
      auto zero = Const(scope, 0);
      auto group_size = SafeDivHelper(scope, Prod(scope, input_shape, zero),
                                      Prod(scope, output_shape, zero));
    
      // propagate sum_grad/group_size
      grad_outputs->push_back(
          Div(scope, sum_grad, Cast(scope, group_size, sum_grad.type())));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    		"containerLogs":                   {url: "/containerLogs/podNamespace/podID/containerName", bucket: "containerLogs"},
    		"debug v flags":                   {url: "/debug/flags/v", bucket: "debug"},
    		"pprof with sub":                  {url: "/debug/pprof/subpath", bucket: "debug"},
    		"exec":                            {url: "/exec/podNamespace/podID/containerName", bucket: "exec"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// namespace is associated with the "environment" of "prod" or "staging";
    	// you will set the selector as follows:
    	// "namespaceSelector": {
    	//   "matchExpressions": [
    	//     {
    	//       "key": "environment",
    	//       "operator": "In",
    	//       "values": [
    	//         "prod",
    	//         "staging"
    	//       ]
    	//     }
    	//   ]
    	// }
    	//
    	// See
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // namespace is associated with the "environment" of "prod" or "staging";
      // you will set the selector as follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "environment",
      //       "operator": "In",
      //       "values": [
      //         "prod",
      //         "staging"
      //       ]
      //     }
      //   ]
      // }
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // namespace is associated with the "environment" of "prod" or "staging";
      // you will set the selector as follows:
      // "namespaceSelector": {
      //   "matchExpressions": [
      //     {
      //       "key": "environment",
      //       "operator": "In",
      //       "values": [
      //         "prod",
      //         "staging"
      //       ]
      //     }
      //   ]
      // }
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. hack/tools/go.sum

    github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
    github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc=
    github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// namespace is associated with the "environment" of "prod" or "staging";
    	// you will set the selector as follows:
    	// "namespaceSelector": {
    	//   "matchExpressions": [
    	//     {
    	//       "key": "environment",
    	//       "operator": "In",
    	//       "values": [
    	//         "prod",
    	//         "staging"
    	//       ]
    	//     }
    	//   ]
    	// }
    	//
    	// See
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_windows.go

    func GetProcAddress(module Handle, procname string) (proc uintptr, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(procname)
    	if err != nil {
    		return
    	}
    	return _GetProcAddress(module, _p0)
    }
    
    func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {
    	r0, _, e1 := Syscall(procGetProcAddress.Addr(), 2, uintptr(module), uintptr(unsafe.Pointer(procname)), 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  10. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

            image: "{{ .ProxyImage }}"
          {{- end }}
            {{ if $nativeSidecar }}restartPolicy: Always{{end}}
            ports:
            - containerPort: 15090
              protocol: TCP
              name: http-envoy-prom
            args:
            - proxy
            - sidecar
            - --domain
            - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top